Skip to content

Commit

Permalink
Fix tray icon not showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
angrylinuxuser authored and C0rn3j committed Aug 21, 2024
1 parent 7e8b077 commit d096f91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scc/gui/statusicon.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,8 +350,8 @@ def _load_fallback(self):
for StatusIconBackend in status_icon_backends:
try:
self._status_fb = StatusIconBackend(*self._arguments[0], **self._arguments[1])
self._status_fb.connect(b"clicked", self._on_click)
self._status_fb.connect(b"notify::active", self._on_notify_active_fb)
self._status_fb.connect("clicked", self._on_click)
self._status_fb.connect("notify::active", self._on_notify_active_fb)
self._on_notify_active_fb()

log.warning("StatusIcon: Using backend %s (fallback)" % StatusIconBackend.__name__)
Expand Down

0 comments on commit d096f91

Please sign in to comment.