Fixed typo
This commit is contained in:
parent
ee9195e39f
commit
55ce163049
2 changed files with 3 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -26,3 +26,5 @@ gradle-app.setting
|
|||
.project
|
||||
# JDT-specific (Eclipse Java Development Tools)
|
||||
.classpath.class
|
||||
|
||||
movieBookings.db3
|
||||
|
|
|
@ -24,7 +24,7 @@ public class MainApplication extends Application {
|
|||
try {
|
||||
|
||||
// BorderPane root = new BorderPane();
|
||||
FXMLLoader loader = new FXMLLoader(getClass().getResource("/TopTab.fxml"));
|
||||
FXMLLoader loader = new FXMLLoader(getClass().getResource("/topTab.fxml"));
|
||||
Parent root = loader.load();
|
||||
|
||||
Scene scene = new Scene(root,600,440);
|
||||
|
|
Loading…
Reference in a new issue