mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix systemtray from stopping properly when appindicator is enabled
This commit is contained in:
parent
ce406674ec
commit
cebdc89b18
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ class SystemTray(component.Component):
|
|||
self.__start()
|
||||
|
||||
def stop(self):
|
||||
if self.config["enable_system_tray"]:
|
||||
if self.config["enable_system_tray"] and not self.config["enable_appindicator"]:
|
||||
try:
|
||||
# Hide widgets in hide list because we're not connected to a host
|
||||
for widget in self.hide_widget_list:
|
||||
|
|
Loading…
Add table
Reference in a new issue