1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 11:43:13 +02:00

Fixed scroll problem (screen moving when scrolling and new line displayed)

This commit is contained in:
Sebastien Helleu
2005-09-15 08:21:36 +00:00
parent e18f14e5d3
commit 7f4a213239
12 changed files with 442 additions and 192 deletions
+2 -2
View File
@@ -57,10 +57,10 @@ char *dcc_status_string[] = /* strings for DCC status */
void
dcc_redraw (int highlight)
{
gui_redraw_buffer (gui_get_dcc_buffer ());
gui_redraw_buffer (gui_get_dcc_buffer (gui_current_window));
if (highlight)
{
hotlist_add (highlight, gui_get_dcc_buffer ());
hotlist_add (highlight, gui_get_dcc_buffer (gui_current_window));
gui_draw_buffer_status (gui_current_window->buffer, 0);
}
}