How do I force a minimum window size?
jMonkeyEngine Hub
June 17, 2026
Hi jMonkey community.
I have a question and hope to find the answer here.
How can I set a minimum window size on the application settings, or in any other way?
I am trying the following code but it does not seem to work. I am using jME3.9.0-stable.
settings.setWidth(1920);
settings.setHeight(1080);
settings.setResizable(true);
settings.setMinResolution(1280, 720);
settings.setCenterWindow(true);
I can still scale the window to a very tiny window.
Discussion in the ATmosphere