diff --git a/src/View/About/Window.py b/src/View/About/Window.py index 5472d7ae..b8d66f8e 100644 --- a/src/View/About/Window.py +++ b/src/View/About/Window.py @@ -55,7 +55,7 @@ class AboutWindow(PamhyrDialog): label = self.get_label_text("label_version") label = label.replace("@version", version) - label = label.replace("@codename", "") + label = label.replace("@codename", "(Claude François)") self.set_label_text("label_version", label) # Authors diff --git a/src/View/MainWindow.py b/src/View/MainWindow.py index 85720ee9..405a3312 100644 --- a/src/View/MainWindow.py +++ b/src/View/MainWindow.py @@ -195,10 +195,10 @@ class ApplicationWindow(QMainWindow, ListedSubWindow, WindowToolKit): title = "(dbg) " if self.conf.debug else "" if self._study is not None: - title += f"Pamhyr2 - {self._study.name}" + title += f"Pamhyr2 (Claude François) - {self._study.name}" self.setWindowTitle(title) else: - title += "Pamhyr2" + title += "Pamhyr2 (Claude François)" self.setWindowTitle(title) def setup_tab(self):