|
@@ -60,7 +60,7 @@ public class Settings {
|
|
|
public final ObjectProperty<NodeOrientation> userInterfaceOrientation;
|
|
|
public final StringProperty licenseKey;
|
|
|
public final BooleanProperty showTrayIcon;
|
|
|
- public final BooleanProperty useCondensedMode;
|
|
|
+ public final BooleanProperty compactMode;
|
|
|
public final IntegerProperty windowXPosition;
|
|
|
public final IntegerProperty windowYPosition;
|
|
|
public final IntegerProperty windowWidth;
|
|
@@ -97,7 +97,7 @@ public class Settings {
|
|
|
this.userInterfaceOrientation = new SimpleObjectProperty<>(this, "userInterfaceOrientation", parseEnum(json.uiOrientation, NodeOrientation.class, NodeOrientation.LEFT_TO_RIGHT));
|
|
|
this.licenseKey = new SimpleStringProperty(this, "licenseKey", json.licenseKey);
|
|
|
this.showTrayIcon = new SimpleBooleanProperty(this, "showTrayIcon", json.showTrayIcon);
|
|
|
- this.useCondensedMode = new SimpleBooleanProperty(this, "useCondensedMode", json.useCondensedMode);
|
|
|
+ this.compactMode = new SimpleBooleanProperty(this, "compactMode", json.compactMode);
|
|
|
this.windowXPosition = new SimpleIntegerProperty(this, "windowXPosition", json.windowXPosition);
|
|
|
this.windowYPosition = new SimpleIntegerProperty(this, "windowYPosition", json.windowYPosition);
|
|
|
this.windowWidth = new SimpleIntegerProperty(this, "windowWidth", json.windowWidth);
|
|
@@ -124,7 +124,7 @@ public class Settings {
|
|
|
userInterfaceOrientation.addListener(this::somethingChanged);
|
|
|
licenseKey.addListener(this::somethingChanged);
|
|
|
showTrayIcon.addListener(this::somethingChanged);
|
|
|
- useCondensedMode.addListener(this::somethingChanged);
|
|
|
+ compactMode.addListener(this::somethingChanged);
|
|
|
windowXPosition.addListener(this::somethingChanged);
|
|
|
windowYPosition.addListener(this::somethingChanged);
|
|
|
windowWidth.addListener(this::somethingChanged);
|
|
@@ -178,7 +178,7 @@ public class Settings {
|
|
|
json.uiOrientation = userInterfaceOrientation.get().name();
|
|
|
json.licenseKey = licenseKey.get();
|
|
|
json.showTrayIcon = showTrayIcon.get();
|
|
|
- json.useCondensedMode = useCondensedMode.get();
|
|
|
+ json.compactMode = compactMode.get();
|
|
|
json.windowXPosition = windowXPosition.get();
|
|
|
json.windowYPosition = windowYPosition.get();
|
|
|
json.windowWidth = windowWidth.get();
|