From ae7e850bf3e01c33438edecd04c08312e7bf5f3a Mon Sep 17 00:00:00 2001 From: Marcos Junior Date: Mon, 16 Dec 2024 10:33:57 -0600 Subject: [PATCH] Fix flatpak python issue --- src/WebAppManagerWindow.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/WebAppManagerWindow.py b/src/WebAppManagerWindow.py index dc7e6d1..b3329b1 100644 --- a/src/WebAppManagerWindow.py +++ b/src/WebAppManagerWindow.py @@ -90,7 +90,9 @@ def actionLaunch_clicked(self): def actionAbout_clicked(self): - QMessageBox.about(self.__window, f"{_("About")} {self.__window.windowTitle()}", f""" + title=_("About") + + QMessageBox.about(self.__window, f"{title} {self.__window.windowTitle()}", f"""

{self.__window.windowTitle()} is a simple tool to manage web applications.

{APP_VERSION}