mirror of
https://git.deluge-torrent.org/deluge
synced 2025-09-18 07:41:55 +00:00
make sound not sensitive on windows
This commit is contained in:
parent
99065bf452
commit
64aeb867a4
1 changed files with 5 additions and 3 deletions
|
@ -119,6 +119,8 @@ class TorrentNotification:
|
||||||
if deluge.common.windows_check():
|
if deluge.common.windows_check():
|
||||||
self.glade.get_widget("chk_notification").set_active(False)
|
self.glade.get_widget("chk_notification").set_active(False)
|
||||||
self.glade.get_widget("chk_notification").set_sensitive(False)
|
self.glade.get_widget("chk_notification").set_sensitive(False)
|
||||||
|
self.glade.get_widget("chk_sound").set_active(False)
|
||||||
|
self.glade.get_widget("sound_path_button").set_sensitive(False)
|
||||||
else:
|
else:
|
||||||
self.glade.get_widget("chk_notification").set_active(self.config.get("enable_notification"))
|
self.glade.get_widget("chk_notification").set_active(self.config.get("enable_notification"))
|
||||||
self.glade.get_widget("chk_sound").set_active(self.config.get("enable_sound"))
|
self.glade.get_widget("chk_sound").set_active(self.config.get("enable_sound"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue