diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-06-05 21:31:43 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-06-05 21:31:43 +0000 |
commit | 8affe52ee49c40d4a8ba4e4e0f448ed078451630 (patch) | |
tree | f3edfdd3d6a3c4555edb0b67f419baf4dbcd93d5 /src | |
parent | 162565466e8b794756b0fac965ddd188fe148d55 (diff) | |
download | weechat-8affe52ee49c40d4a8ba4e4e0f448ed078451630.zip |
Fixed hotlist when exiting search mode: current buffer is removed from hotlist
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/gui-buffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/gui-buffer.c b/src/gui/gui-buffer.c index 1b29f3f03..fd7ebca69 100644 --- a/src/gui/gui-buffer.c +++ b/src/gui/gui-buffer.c @@ -1184,6 +1184,7 @@ gui_buffer_search_stop (t_gui_window *window) } window->start_line = NULL; window->start_line_pos = 0; + hotlist_remove_buffer (window->buffer); gui_chat_draw (window->buffer, 0); gui_status_draw (window->buffer, 1); gui_input_draw (window->buffer, 1); |