Skip to content

Commit 229cf1d

Browse files
committed
Fix tray icon changing upon notification
1 parent 4480d5d commit 229cf1d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bitmessageqt/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,8 @@ def _noop_update(*args, **kwargs):
14131413
def notifierInit(self):
14141414
def _simple_notify(
14151415
title, subtitle, category, label=None, icon=None):
1416-
self.tray.showMessage(title, subtitle, 1, 2000)
1416+
self.tray.showMessage(
1417+
title, subtitle, self.tray.NoIcon, msecs=2000)
14171418

14181419
self._notifier = _simple_notify
14191420

0 commit comments

Comments
 (0)