summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/gui/gui-buffer.c1
-rw-r--r--weechat/ChangeLog4
-rw-r--r--weechat/src/gui/gui-buffer.c1
4 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0cbd5714a..ef7d05e6a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,12 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
-ChangeLog - 2007-05-23
+ChangeLog - 2007-06-05
Version 0.2.5 (under dev!):
+ * fixed hotlist when exiting search mode: current buffer is removed from
+ hotlist
* added "%M" for completion with nicks of current server (nicks on open
channels) (task #6931)
* improved key bindings: now possible to bind a key on many commands,
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);
diff --git a/weechat/ChangeLog b/weechat/ChangeLog
index 0cbd5714a..ef7d05e6a 100644
--- a/weechat/ChangeLog
+++ b/weechat/ChangeLog
@@ -1,10 +1,12 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
-ChangeLog - 2007-05-23
+ChangeLog - 2007-06-05
Version 0.2.5 (under dev!):
+ * fixed hotlist when exiting search mode: current buffer is removed from
+ hotlist
* added "%M" for completion with nicks of current server (nicks on open
channels) (task #6931)
* improved key bindings: now possible to bind a key on many commands,
diff --git a/weechat/src/gui/gui-buffer.c b/weechat/src/gui/gui-buffer.c
index 1b29f3f03..fd7ebca69 100644
--- a/weechat/src/gui/gui-buffer.c
+++ b/weechat/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);