Skip to content

Commit ae7e850

Browse files
committed
Fix flatpak python issue
1 parent 0b64352 commit ae7e850

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/WebAppManagerWindow.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ def actionLaunch_clicked(self):
9090

9191

9292
def actionAbout_clicked(self):
93-
QMessageBox.about(self.__window, f"{_("About")} {self.__window.windowTitle()}", f"""
93+
title=_("About")
94+
95+
QMessageBox.about(self.__window, f"{title} {self.__window.windowTitle()}", f"""
9496
<p><strong>{self.__window.windowTitle()}</strong> is a simple tool to manage web applications.</p>
9597
<p>{APP_VERSION}</p>
9698
<p>

0 commit comments

Comments
 (0)