mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
[GTK] Fix toggling auto_managed in Options tab
The refactoring of the options code didn't update to use the new status
key `auto_managed` and `is_auto_managed` is not a valid torrent option.
Related: 1637da84e4
This commit is contained in:
parent
88a3600ce3
commit
0e69b9199c
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class OptionsTab(Tab):
|
|||
self.add_tab_widget(
|
||||
'chk_sequential_download', 'active', ['sequential_download']
|
||||
)
|
||||
self.add_tab_widget('chk_auto_managed', 'active', ['is_auto_managed'])
|
||||
self.add_tab_widget('chk_auto_managed', 'active', ['auto_managed'])
|
||||
self.add_tab_widget('chk_stop_at_ratio', 'active', ['stop_at_ratio'])
|
||||
self.add_tab_widget('chk_remove_at_ratio', 'active', ['remove_at_ratio'])
|
||||
self.add_tab_widget('spin_stop_ratio', 'value', ['stop_ratio'])
|
||||
|
|
Loading…
Add table
Reference in a new issue