Skip to content

Commit

Permalink
Making default stage width a bit wider to not to show in the initial …
Browse files Browse the repository at this point in the history
…window an horizontal scroll
  • Loading branch information
adrianromero committed Aug 3, 2019
1 parent 45d86dc commit b33b40d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/adr/helloiot/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public final void start(Stage stage) {
if (maximized) {
stage.setMaximized(true);
} else {
stage.setWidth(Double.parseDouble(HelloPlatform.getInstance().getProperty("window.width", "800.0")));
stage.setWidth(Double.parseDouble(HelloPlatform.getInstance().getProperty("window.width", "850.0")));
stage.setHeight(Double.parseDouble(HelloPlatform.getInstance().getProperty("window.height", "600.0")));
}
}
Expand Down

0 comments on commit b33b40d

Please sign in to comment.