From 6cb304610bc97fd49a4370ed16026c021b29e2f5 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Thu, 18 Aug 2005 08:32:35 +0000 Subject: [PATCH] create xml console window when we create a new account --- src/gajim.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index 01af917b75..194a7e17ff 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -547,7 +547,8 @@ class Interface: gajim.config.set_per('accounts', name, opt, array[1][opt]) if self.windows.has_key('account_modification'): self.windows['account_modification'].account_is_ok(array[0]) - self.windows[name] = {'infos': {}, 'chats': {}, 'gc': {}, 'gc_config': {}} + self.windows[name] = {'infos': {}, 'chats': {}, 'gc': {}, 'gc_config': {}} + self.windows[name]['xml_console'] = dialogs.XMLConsoleWindow(self, name) gajim.awaiting_messages[name] = {} # disconnect from server - our status in roster is offline gajim.connections[name].connected = 1 -- GitLab