From 0e10c04cce83b7b3c0bedd128457d797b605bdbe Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 9 Nov 2011 17:55:43 +0100 Subject: Fixed a display bug (the info buffer popped even in the RosterInfoTab) --- src/core.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/core.py b/src/core.py index a7c331ef..35e2040f 100644 --- a/src/core.py +++ b/src/core.py @@ -1537,7 +1537,9 @@ class Core(object): Displays an informational message in the "Info" buffer """ nb_lines = self.information_buffer.add_message(msg, nickname=typ) - if typ != '' and typ.lower() in config.get('information_buffer_popup_on', + if isinstance(self.current_tab(), tabs.RosterInfoTab): + self.refresh_window() + elif typ != '' and typ.lower() in config.get('information_buffer_popup_on', 'error roster warning help info').split(): popup_time = config.get('popup_time', 4) + (nb_lines - 1) * 2 self.pop_information_win_up(nb_lines, popup_time) -- cgit v1.2.3