We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66ae75f commit 4e6f093Copy full SHA for 4e6f093
1 file changed
src/utils/system_tray.py
@@ -14,7 +14,7 @@ def __init__(self, visible: bool = False):
14
15
def send(self, title: str, body: str, messageClicked: callable = None):
16
"""Allows sending tray messages without showing an icon in the system tray."""
17
- self.messageClicked.connect(messageClicked())
+ self.messageClicked.connect(messageClicked)
18
visible = self.isVisible()
19
if not visible:
20
self.setVisible(True)
0 commit comments