1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

Remove buffer from hotlist when buffer is cleared (bug #27530)

This commit is contained in:
Sebastien Helleu
2009-09-30 09:55:19 +02:00
parent 9bbd093ffe
commit 79fd2aa317
2 changed files with 5 additions and 2 deletions
+3 -2
View File
@@ -1,7 +1,7 @@
WeeChat ChangeLog
=================
FlashCode <flashcode@flashtux.org>
v0.3.1-dev, 2009-09-20
v0.3.1-dev, 2009-09-30
Version 0.3.1 (under dev!)
@@ -17,7 +17,8 @@ Version 0.3.1 (under dev!)
* irc: add missing CTCP: clientinfo, finger, source, time, userinfo (task #7270)
* irc: improve error management on socket error (recv/send)
* xfer: add missing charset decoding/encoding for IRC DCC chat (bug #27482)
* gui: update hotlist when a buffer is closed (bug #27470)
* gui: update hotlist when a buffer is closed (bug #27470), remove buffer from
hotlist when buffer is cleared (bug #27530)
* gui: fix /input history_global_next: reset input content when last command in
history is reached
* api: fix function weechat_bar_set for python/lua/ruby (patch #6912)
+2
View File
@@ -1434,6 +1434,8 @@ gui_buffer_clear (struct t_gui_buffer *buffer)
}
}
gui_hotlist_remove_buffer (buffer);
gui_buffer_ask_chat_refresh (buffer, 2);
}