ADD::added title to main program stage

now displays "Greenify - <username>"
This commit is contained in:
Sem van der Hoeven
2019-03-18 13:34:34 +01:00
parent f89470458b
commit 874c6fba06

View File

@@ -71,6 +71,7 @@ public class UserController {
.getResource("stylesheets/dashboardStyle.css").toExternalForm());
Stage appStage = new Stage();
appStage.setScene(scene);
appStage.setTitle("Greenify - " + usernameField.getText());
appStage.show();
}