Fix #2104 : Deluge has no indicator title

This commit is contained in:
Calum Lind 2012-09-29 19:15:49 +01:00
parent bb7b529c29
commit 610cd7dd33

View File

@ -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)