[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:
Calum Lind 2018-10-19 13:15:33 +01:00
parent 88a3600ce3
commit 0e69b9199c
1 changed files with 1 additions and 1 deletions

View File

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