diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..297fd39 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "java", + "name": "Current File", + "request": "launch", + "mainClass": "${file}" + }, + { + "type": "java", + "name": "Main", + "request": "launch", + "vmArgs": "--module-path C:/Sources/javafx-sdk-22.0.1/lib --add-modules javafx.controls,javafx.fxml", + "mainClass": "program.Main", + "projectName": "Pegasus_606a3a68" + } + ] +} \ No newline at end of file diff --git a/bin/views/HomeScreen.class b/bin/views/HomeScreen.class index f2c8598..ce05461 100644 Binary files a/bin/views/HomeScreen.class and b/bin/views/HomeScreen.class differ diff --git a/src/views/HomeScreen.java b/src/views/HomeScreen.java index 301c09e..3680149 100644 --- a/src/views/HomeScreen.java +++ b/src/views/HomeScreen.java @@ -47,7 +47,6 @@ public class HomeScreen { vbox.setStyle("-fx-background-color: #E6F2FF;"); Scene scene = new Scene(vbox, 600, 400); - scene.getStylesheets().add(getClass().getResource("/resources/style.css").toExternalForm()); stage.setScene(scene); stage.setTitle("Fluglogbuch");