use the resizable parameter instead of a default 'true' value

This commit is contained in:
rvandoosselaer 2017-03-13 15:22:06 +01:00
parent f5dbafe013
commit 81a301f8ef

View File

@ -982,7 +982,7 @@ public final class AppSettings extends HashMap<String, Object> {
* size window. * size window.
*/ */
public void setResizable(boolean resizable) { public void setResizable(boolean resizable) {
putBoolean("Resizable", true); putBoolean("Resizable", resizable);
} }
/** /**