From 878c403654cf219130cf191096e6abe0bf72130d Mon Sep 17 00:00:00 2001 From: Sergio Valor Martinez Date: Mon, 1 Jun 2026 13:24:56 +0200 Subject: [PATCH] =?UTF-8?q?Evita=20=C2=ABJail=20Launcher=C2=BB=20duplicat?= =?UTF-8?q?=20al=20t=C3=ADtol=20a=20Windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jlauncher/__main__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jlauncher/__main__.py b/jlauncher/__main__.py index 2f850b9..15f8016 100644 --- a/jlauncher/__main__.py +++ b/jlauncher/__main__.py @@ -16,7 +16,9 @@ from .ui.theme import apply_theme def main() -> int: app = QApplication(sys.argv) app.setApplicationName("jlauncher") - app.setApplicationDisplayName("Jail Launcher") + # No fixem applicationDisplayName: a Windows/X11 Qt l'afegeix al títol de la + # finestra ("títol - displayName") i duplicaria «Jail Launcher», que ja surt + # a WINDOW_TITLE. El nom de l'app al menú de macOS ve del bundle (Nuitka). icon_path = app_icon_path() if icon_path is not None: app.setWindowIcon(QIcon(str(icon_path)))