diff --git a/src/groupchat_window.py b/src/groupchat_window.py index 8f4f18086..43bccdd4b 100644 --- a/src/groupchat_window.py +++ b/src/groupchat_window.py @@ -411,7 +411,9 @@ class Groupchat_window(chat.Chat): def on_info(self, widget, jid): """Call vcard_information_window class to display user's information""" - if not self.plugin.windows[self.account]['infos'].has_key(jid): + if self.plugin.windows[self.account]['infos'].has_key(jid): + self.plugin.windows[self.account]['infos'][jid].present() + else: self.plugin.windows[self.account]['infos'][jid] = \ dialogs.Vcard_window(jid, self.plugin, self.account, True)