Windows .jar Window Size in Launcher Settings

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

MonthOLDpickle

New Member
Jul 29, 2019
219
0
0
It doesn't affect my minecraft window at all. I tested this by doing other resolutions, full screen back to windowed and even window resizer (which works).


How can I force it to work?
 

mikrosenshi

New Member
Jul 29, 2019
12
0
0
It's a known problem with the actual launcher. Hopefully it'll be fixed in one of the next updates.
Until then, you have to resize the window yourself or use a tool that can accomplish this. ;)
 

mikrosenshi

New Member
Jul 29, 2019
12
0
0
The window size thing is a problem for me, too, and I read maybe 2-3 posts about this before. The "known" wasn't meant in an insulting way. Just to clearify that and just in case you might have got it in another way. ;)

Maybe Google needs to start playing FTB. :D

Edit:
My temporary - quick and dirty - fix for that is a little AutoIt Script. I run it each time after Minecraft ist fully launched. It resizes the Minecraft window (= $title) to the new $width and $height and moves it to the center of the screen.

Code:
AutoItSetOption('WinTitleMatchMode', 3)
$width = 1280
$height = 720
$title = 'Minecraft 1.6.4'
WinMove($title, '', (@DesktopWidth - $width) / 2, (@DesktopHeight - $height) / 2, $width, $height)
 
Last edited: