From 9fb59ca4a04f059d7fc11813db9fcab85d1e5b38 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 13 Mar 2005 20:30:53 +0000 Subject: [PATCH] bugfix --- plugins/gtkgui/config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/gtkgui/config.py b/plugins/gtkgui/config.py index 2ea363cda..9576f27d3 100644 --- a/plugins/gtkgui/config.py +++ b/plugins/gtkgui/config.py @@ -1033,6 +1033,11 @@ class Account_modification_window: list_no_log_for.append(name) self.infos['no_log_for'] = ' '.join(list_no_log_for) + sync_with_global_status = 0 + if self.xml.get_widget('sync_with_global_status_checkbutton').\ + get_active(): + sync_with_global_status = 1 + use_proxy = 0 if self.xml.get_widget('use_proxy_checkbutton').get_active(): use_proxy = 1