fix: changed window size

This commit is contained in:
Johannes Kantz
2023-01-31 07:03:11 +01:00
committed by Reshad Meher
parent 6555f8f8bc
commit 4d6c2043d7
5 changed files with 324 additions and 177 deletions

View File

@@ -17,8 +17,8 @@ public class StartViewApplication extends Application {
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(StartViewApplication.class.getResource("login-view.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 950,480);
//stage = primary;
Scene scene = new Scene(fxmlLoader.load(), 1200,900);
primary = stage;
stage.setTitle("Essen Bestellung im Kindergarten");
stage.setScene(scene);
stage.show();