From 75bb6941d36eb1d0cbc7ae3e652e0391d2f69384 Mon Sep 17 00:00:00 2001 From: Khopa Date: Mon, 24 Aug 2020 22:49:55 +0200 Subject: [PATCH] Added version string in the window title --- qt_ui/windows/QLiberationWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt_ui/windows/QLiberationWindow.py b/qt_ui/windows/QLiberationWindow.py index 3d19cdf5..da50e03f 100644 --- a/qt_ui/windows/QLiberationWindow.py +++ b/qt_ui/windows/QLiberationWindow.py @@ -29,7 +29,7 @@ class QLiberationWindow(QMainWindow): self.setGame(persistency.restore_game()) self.setGeometry(300, 100, 270, 100) - self.setWindowTitle("DCS Liberation") + self.setWindowTitle("DCS Liberation - v" + CONST.VERSION_STRING) self.setWindowIcon(QIcon("./resources/icon.png")) self.statusBar().showMessage('Ready')