Skip to content
Snippets Groups Projects
Commit ec7c1275 authored by Nicolay Schiøll-Johansen's avatar Nicolay Schiøll-Johansen
Browse files

Merge branch 'stage-maximize' into 'dev'

Maximized stage to fill the screen

See merge request !65
parents 46f5cb3c 45a85940
No related branches found
No related tags found
2 merge requests!104Weekly merge to Master,!65Maximized stage to fill the screen
...@@ -19,6 +19,7 @@ public class App extends Application { ...@@ -19,6 +19,7 @@ public class App extends Application {
public void start(Stage stage) throws IOException { public void start(Stage stage) throws IOException {
ex = new DataExchange(); ex = new DataExchange();
scene = new Scene(loadFXML("login")); scene = new Scene(loadFXML("login"));
stage.setMaximized(true);
stage.setScene(scene); stage.setScene(scene);
stage.show(); stage.show();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment