diff --git a/deluge/ui/gtkui/systemtray.py b/deluge/ui/gtkui/systemtray.py index 54113c95a..43318f174 100644 --- a/deluge/ui/gtkui/systemtray.py +++ b/deluge/ui/gtkui/systemtray.py @@ -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)