diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-01-01 20:48:14 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-01-01 20:48:14 +0000 |
commit | 3e2349481c3f016937c3a81119d574b07054800a (patch) | |
tree | 11bb3dd4c0cbef8048f4fca66352413161a2fab9 /src | |
parent | 37e4e1f01168617f2eb249f4b9a847ad434cc7ea (diff) | |
download | weechat-3e2349481c3f016937c3a81119d574b07054800a.zip |
Fixed bug with status bar (missing refresh) when closing a buffer
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/gui-buffer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/gui-buffer.c b/src/gui/gui-buffer.c index bf7b3f6cb..92ce6d48f 100644 --- a/src/gui/gui-buffer.c +++ b/src/gui/gui-buffer.c @@ -545,6 +545,8 @@ gui_buffer_free (t_gui_buffer *buffer, int switch_to_another) if (!gui_buffers && create_new && switch_to_another) (void) gui_buffer_new (gui_windows, NULL, NULL, BUFFER_TYPE_STANDARD, 1); + + gui_status_draw (gui_current_window->buffer, 1); } /* |