Skip to content
Snippets Groups Projects

Simple

3 files
+ 31
29
Compare changes
  • Side-by-side
  • Inline

Files

@@ -26,7 +26,7 @@ public class SimulatorApplication extends javafx.application.Application {
@@ -26,7 +26,7 @@ public class SimulatorApplication extends javafx.application.Application {
this.primaryStage = primaryStage;
this.primaryStage = primaryStage;
this.primaryStage.setTitle(APP_NAME);
this.primaryStage.setTitle(APP_NAME);
this.primaryStage.setOnCloseRequest(event -> Platform.exit());
this.primaryStage.setOnCloseRequest(event -> Platform.exit());
this.primaryStage.setResizable(false);
this.primaryStage.setResizable(true);
this.primaryStage.sizeToScene();
this.primaryStage.sizeToScene();
}
}
Loading