Compare commits

..

No commits in common. "eeca53fc255c5980a28e8f7de1504b59a7803ffb" and "3211abd0064c6ac31e2629488f4331eee0beb49b" have entirely different histories.

2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# Essensbestellungsverwaltung
test
test

View File

@ -12,7 +12,7 @@ public class HelloApplication extends Application {
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 320, 240);
stage.setTitle("Hello World!");
stage.setTitle("Hello!");
stage.setScene(scene);
stage.show();
}