diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-06-15 23:33:29 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-06-15 23:33:29 +0200 |
commit | dd9186c72a04f449c427bce31d35a283f3c61c25 (patch) | |
tree | 8611754b3dfb2930b0a10c8590f9c92444b7a715 | |
parent | 40d445e509dd5643150869862d608562ff5a01c0 (diff) | |
download | poezio-dd9186c72a04f449c427bce31d35a283f3c61c25.tar.gz poezio-dd9186c72a04f449c427bce31d35a283f3c61c25.tar.bz2 poezio-dd9186c72a04f449c427bce31d35a283f3c61c25.tar.xz poezio-dd9186c72a04f449c427bce31d35a283f3c61c25.zip |
Fix the refresh of the muc info header on new messae
-rw-r--r-- | src/core.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py index e096b65c..4aa1b2b3 100644 --- a/src/core.py +++ b/src/core.py @@ -971,6 +971,7 @@ class Core(object): self.add_message_to_text_buffer(room, body, date, nick_from) if tab is self.current_tab(): tab.text_win.refresh(tab._room) + tab.info_header.refresh(tab._room, tab.text_win) self.refresh_tab_win() def add_message_to_text_buffer(self, room, txt, time=None, nickname=None): |