diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py index 04f89172..5f173d63 100644 --- a/src/core.py +++ b/src/core.py @@ -664,8 +664,12 @@ class Core(object): resource.presence = status resource.priority = priority resource.status = status_message + tab = self.get_tab_of_conversation_with_jid(jid, create=False) if isinstance(self.current_tab(), tabs.RosterInfoTab): self.refresh_window() + elif self.current_tab() == tab: + tab.refresh() + self.doupdate() def on_roster_update(self, iq): """ |