Browse Source

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

rvandoosselaer 8 năm trước cách đây
mục cha
commit
81a301f8ef
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      jme3-core/src/main/java/com/jme3/system/AppSettings.java

+ 1 - 1
jme3-core/src/main/java/com/jme3/system/AppSettings.java

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