mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-13 04:54:23 +00:00
Fix #2104 : Deluge has no indicator title
This commit is contained in:
parent
bb7b529c29
commit
610cd7dd33
@ -109,6 +109,11 @@ class SystemTray(component.Component):
|
||||
log.debug("Enabling the Application Indicator..")
|
||||
self.indicator = appindicator.Indicator (
|
||||
"deluge", "deluge", appindicator.CATEGORY_APPLICATION_STATUS)
|
||||
try:
|
||||
self.indicator.set_property ("title", _("Deluge"))
|
||||
except TypeError:
|
||||
# Catch 'title' property error for previous appindicator versions
|
||||
pass
|
||||
# Pass the menu to the Application Indicator
|
||||
self.indicator.set_menu(self.tray_menu)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user