Resolved issue #69 and added dock icon for splash screen.

This commit is contained in:
Kusal Ekanayake
2017-09-27 19:27:13 +13:00
parent 2a523a5664
commit efc71f2003
2 changed files with 2 additions and 11 deletions
@@ -64,6 +64,8 @@ public class ViewManager {
this.stage = stage;
Parent root = FXMLLoader.load(getClass().getResource("/views/SplashScreen.fxml"));
Scene scene = new Scene(root);
stage.setTitle("Party Parrots At Sea");
stage.getIcons().add(new Image(getClass().getResourceAsStream("/PP.png")));
stage.setScene(scene);
stage.initStyle(StageStyle.UNDECORATED);
stage.show();