diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2004-05-31 15:16:34 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2004-05-31 15:16:34 +0000 |
commit | 9211a67fb4517a1ee2f3249173e21ff6f93523b6 (patch) | |
tree | b1e42959d24503c9b50b6bac00a26f63c30f05c9 /src/gui/curses | |
parent | d0babb2896e37fe135a608ed3e975fa8535fcd48 (diff) | |
download | weechat-9211a67fb4517a1ee2f3249173e21ff6f93523b6.zip |
Improved channel highlight (priority to message vs join/part)
Diffstat (limited to 'src/gui/curses')
-rw-r--r-- | src/gui/curses/gui-display.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gui/curses/gui-display.c b/src/gui/curses/gui-display.c index 12a314b26..310493c3a 100644 --- a/src/gui/curses/gui-display.c +++ b/src/gui/curses/gui-display.c @@ -1684,8 +1684,11 @@ gui_add_message (t_gui_window *window, int type, int color, char *message) } if ((window != gui_current_window) || (window->sub_lines > 0)) { - window->unread_data = 1 + window->last_line->line_with_message; - gui_redraw_window_status (gui_current_window); + if (window->unread_data < 1 + window->last_line->line_with_message) + { + window->unread_data = 1 + window->last_line->line_with_message; + gui_redraw_window_status (gui_current_window); + } } } } |