From 212ee31e8c037dcbc7709907a41f6a2c46543a00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20B=C3=B6hning?= <1497707+bohning@users.noreply.github.com> Date: Wed, 30 Oct 2024 13:17:01 +0100 Subject: [PATCH] Restore menu icons that were missing on Mac (it's a feature, not a bug). --- src/usdb_syncer/gui/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/usdb_syncer/gui/__init__.py b/src/usdb_syncer/gui/__init__.py index 7043d4b5..e46d8624 100644 --- a/src/usdb_syncer/gui/__init__.py +++ b/src/usdb_syncer/gui/__init__.py @@ -56,6 +56,7 @@ def _run() -> None: from usdb_syncer.gui.mw import MainWindow # pylint: disable=import-outside-toplevel app = _init_app() + app.setAttribute(Qt.ApplicationAttribute.AA_DontShowIconsInMenus, False) mw = MainWindow() _configure_logging(mw) try: