diff --git a/src/main/java/edu/wpi/cs3733/D22/teamZ/App.java b/src/main/java/edu/wpi/cs3733/D22/teamZ/App.java index c337bec..4fd9391 100644 --- a/src/main/java/edu/wpi/cs3733/D22/teamZ/App.java +++ b/src/main/java/edu/wpi/cs3733/D22/teamZ/App.java @@ -29,7 +29,7 @@ public void start(Stage primaryStage) throws IOException { text.setStrokeWidth(0.5); Parent root = FXMLLoader.load(App.class.getResource("views/Homepage.fxml")); Scene scene = new Scene(root); - primaryStage.setTitle("Custom Font"); + primaryStage.setTitle("Team Z Prototype"); primaryStage.setScene(scene); primaryStage.show(); }