From 4a67797ca76af329f7bc00cc9212da3d820c5545 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Sat, 12 Mar 2005 18:21:49 +0000
Subject: [PATCH] init this widget in the __init__ function (init_account is
 not called when we create a new account)

---
 plugins/gtkgui/config.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/gtkgui/config.py b/plugins/gtkgui/config.py
index 65e867b02d..71063e292c 100644
--- a/plugins/gtkgui/config.py
+++ b/plugins/gtkgui/config.py
@@ -1001,8 +1001,6 @@ class Account_modification_window:
 		if infos.has_key('autoconnect'):
 			self.xml.get_widget('autoconnect_checkbutton').set_active(\
 				infos['autoconnect'])
-		#default is checked
-		self.xml.get_widget('sync_with_global_status_checkbutton').set_active(True)
 		if infos.has_key('sync_with_global_status'):
 			self.xml.get_widget('sync_with_global_status_checkbutton').set_active(\
 				infos['sync_with_global_status'])
@@ -1286,6 +1284,8 @@ class Account_modification_window:
 		self.xml.get_widget('gpg_password_entry').set_sensitive(False)
 		self.xml.get_widget('password_entry').set_sensitive(False)
 		self.xml.get_widget('log_history_checkbutton').set_active(1)
+		#default is checked
+		self.xml.get_widget('sync_with_global_status_checkbutton').set_active(1)
 		self.xml.signal_autoconnect(self)
 		if infos:
 			self.modify = True
-- 
GitLab