From 7a92fa773fddea80881538a2d240cb84da507808 Mon Sep 17 00:00:00 2001 From: Raffson Date: Sun, 18 Sep 2022 15:48:15 +0200 Subject: [PATCH] Adjust main window title --- qt_ui/windows/QLiberationWindow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt_ui/windows/QLiberationWindow.py b/qt_ui/windows/QLiberationWindow.py index 6242a1b7..45203d82 100644 --- a/qt_ui/windows/QLiberationWindow.py +++ b/qt_ui/windows/QLiberationWindow.py @@ -357,9 +357,9 @@ class QLiberationWindow(QMainWindow): def updateWindowTitle(self, save_path: Optional[str] = None) -> None: """ - to DCS Liberation - vX.X.X - file_name + to DCS Retribution - vX.X.X - file_name """ - window_title = f"DCS Liberation - v{VERSION}" + window_title = f"DCS Retribution - v{VERSION}" if save_path: # appending the file name to title as it is updated file_name = save_path.split("/")[-1].split(".liberation")[0] window_title = f"{window_title} - {file_name}"