Fixed typo

This commit is contained in:
Imbus 2024-02-06 03:59:30 +01:00
parent ee9195e39f
commit 55ce163049
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View file

@ -26,3 +26,5 @@ gradle-app.setting
.project .project
# JDT-specific (Eclipse Java Development Tools) # JDT-specific (Eclipse Java Development Tools)
.classpath.class .classpath.class
movieBookings.db3

View file

@ -24,7 +24,7 @@ public class MainApplication extends Application {
try { try {
// BorderPane root = new BorderPane(); // BorderPane root = new BorderPane();
FXMLLoader loader = new FXMLLoader(getClass().getResource("/TopTab.fxml")); FXMLLoader loader = new FXMLLoader(getClass().getResource("/topTab.fxml"));
Parent root = loader.load(); Parent root = loader.load();
Scene scene = new Scene(root,600,440); Scene scene = new Scene(root,600,440);