Skip to content

Commit

Permalink
add version in title bar
Browse files Browse the repository at this point in the history
  • Loading branch information
yarl committed Sep 3, 2016
1 parent b71ed97 commit d24e3cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pattypan/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void start(Stage stage) {

Scene scene = new Scene(new StartPane(stage), Settings.getSettingInt("windowWidth"), Settings.getSettingInt("windowHeight"));
stage.setResizable(true);
stage.setTitle("pattypan");
stage.setTitle("pattypan " + Settings.VERSION);
stage.getIcons().add(logo);
stage.setScene(scene);
stage.show();
Expand Down

0 comments on commit d24e3cf

Please sign in to comment.