fix: changed window size

This commit is contained in:
Johannes Kantz
2023-01-31 07:03:11 +01:00
parent c981fbca19
commit c890819be7
5 changed files with 17 additions and 21 deletions

View File

@@ -17,7 +17,7 @@ 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(), 1200,900);
Scene scene = new Scene(fxmlLoader.load(), 1200,750);
primary = stage;
stage.setTitle("Essen Bestellung im Kindergarten");
stage.setScene(scene);