diff --git a/client/app.py b/client/app.py index 542de91..498fc59 100644 --- a/client/app.py +++ b/client/app.py @@ -758,7 +758,8 @@ def windowsLightMode(): # https://stackoverflow.com/a/65349866 if not bool(SystemTrayApp.windowsLightMode()): iconFile = 'taskBarLight.png' tray = SystemTrayApp(QIcon(getPath(iconFile)), MainWindow) - app.setWindowIcon(QIcon(getPath("icon.png"))) + if platform.system() != "Darwin": + app.setWindowIcon(QIcon(getPath("icon.png"))) window.setupUi(MainWindow) window.selfService()