From 0e69b9199c27904bccaaf7d100452d748b3147a9 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Fri, 19 Oct 2018 13:15:33 +0100 Subject: [PATCH] [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 --- deluge/ui/gtkui/options_tab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/options_tab.py b/deluge/ui/gtkui/options_tab.py index 7e4199ba7..0f5794a5b 100644 --- a/deluge/ui/gtkui/options_tab.py +++ b/deluge/ui/gtkui/options_tab.py @@ -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'])