From b761d0701ac580d610b95ba513a0e3a5bd81dff8 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 21 Apr 2005 18:36:27 +0000 Subject: [PATCH] close the gc_configuration window when we press Change button --- src/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.py b/src/config.py index e326ee3b7..8de924fa4 100644 --- a/src/config.py +++ b/src/config.py @@ -1898,6 +1898,7 @@ class Groupchat_config_window: def on_change_button_clicked(self, widget): gajim.connections[self.account].send_gc_config(self.room_jid, self.config) + self.window.destroy() def on_checkbutton_toggled(self, widget, index): self.config[index]['values'][0] = widget.get_active()