Fix tray icon changing upon notification

This commit is contained in:
Dmitri Bogomolov 2021-02-19 22:21:22 +02:00
parent b5e93edae1
commit 68d24a1969
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
1 changed files with 2 additions and 1 deletions

View File

@ -1411,7 +1411,8 @@ class MyForm(settingsmixin.SMainWindow):
def notifierInit(self):
def _simple_notify(
title, subtitle, category, label=None, icon=None):
self.tray.showMessage(title, subtitle, 1, 2000)
self.tray.showMessage(
title, subtitle, self.tray.NoIcon, msecs=2000)
self._notifier = _simple_notify