Skip to content

Commit 578b259

Browse files
committed
Added version number to application title
1 parent 9657021 commit 578b259

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spin-tools/src/main/java/com/maccasoft/propeller/SpinTools.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4335,7 +4335,7 @@ public void accept(RuntimeException e) {
43354335
public void run() {
43364336
try {
43374337
Shell shell = new Shell(display);
4338-
shell.setText(APP_TITLE);
4338+
shell.setText(APP_TITLE + " " + APP_VERSION);
43394339
shell.setImages(new Image[] {
43404340
ImageRegistry.getImageFromResources("app64.png"),
43414341
ImageRegistry.getImageFromResources("app48.png"),
@@ -4389,7 +4389,7 @@ public static void openInternalError(Shell shell, Throwable details) {
43894389
internalErrorRunning = true;
43904390
try {
43914391
details.printStackTrace();
4392-
InternalErrorDialog dlg = new InternalErrorDialog(shell, APP_TITLE, null, "An unexpected error has occured.", details, MessageDialog.ERROR, new String[] {
4392+
InternalErrorDialog dlg = new InternalErrorDialog(shell, APP_TITLE + " " + APP_VERSION, null, "An unexpected error has occured.", details, MessageDialog.ERROR, new String[] {
43934393
IDialogConstants.OK_LABEL, IDialogConstants.SHOW_DETAILS_LABEL
43944394
}, 0);
43954395
dlg.setDetailButton(1);

0 commit comments

Comments
 (0)