Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2005-08-18 12:32:35 +0400
committerYann Leboulanger <asterix@lagaule.org>2005-08-18 12:32:35 +0400
commit6cb304610bc97fd49a4370ed16026c021b29e2f5 (patch)
treeb8b1e9104c81605a26e83b0b49126702f4904f3b
parentab3df4e540f62206d483fac83e25c7fae356807d (diff)
create xml console window when we create a new account
-rwxr-xr-xsrc/gajim.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gajim.py b/src/gajim.py
index 01af917b7..194a7e17f 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