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
path: root/src
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2006-10-09 15:09:17 +0400
committerYann Leboulanger <asterix@lagaule.org>2006-10-09 15:09:17 +0400
commit835643da913582f7dd3e9adae757b9beea71d11d (patch)
treedc7a3561205375812933dc38bfa2af0224b34142 /src
parent4af1f561360badf5f03294c93ff066489af641cd (diff)
do not ask confirmation window nor check if a row is selected when we close muc with /leave (or others) command. fixes #2528
Diffstat (limited to 'src')
-rw-r--r--src/groupchat_control.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/groupchat_control.py b/src/groupchat_control.py
index 5ebff380b..fdde6bc35 100644
--- a/src/groupchat_control.py
+++ b/src/groupchat_control.py
@@ -1105,7 +1105,7 @@ class GroupchatControl(ChatControlBase):
reason = 'offline'
if len(message_array):
reason = message_array.pop(0)
- self.parent_win.remove_tab(self,reason)
+ self.parent_win.remove_tab(self, reason, force = True)
self.clear(self.msg_textview)
return True
elif command == 'ban':