From c33887b7b70ce7cec8cdf530b62e852ebde97662 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jastrz=C4=99bski?= Date: Wed, 20 May 2015 20:21:12 +0200 Subject: [PATCH] Fixed yet another tray icon anomaly --- kcc/KCC_gui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kcc/KCC_gui.py b/kcc/KCC_gui.py index 787239a..f2fc5a9 100644 --- a/kcc/KCC_gui.py +++ b/kcc/KCC_gui.py @@ -557,6 +557,7 @@ class WorkerThread(QtCore.QThread): class SystemTrayIcon(QtWidgets.QSystemTrayIcon): def __init__(self): + super().__init__() if self.isSystemTrayAvailable(): QtWidgets.QSystemTrayIcon.__init__(self, GUI.icons.programIcon, MW) # noinspection PyUnresolvedReferences