mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
fix redraw
This commit is contained in:
parent
63d8e884dd
commit
ded4e4d98d
@ -1214,6 +1214,8 @@ void mainwindows_redraw_dirty(void)
|
|||||||
if (rec->dirty) {
|
if (rec->dirty) {
|
||||||
rec->dirty = FALSE;
|
rec->dirty = FALSE;
|
||||||
gui_window_redraw(rec->active);
|
gui_window_redraw(rec->active);
|
||||||
|
} else if (WINDOW_GUI(rec->active)->view->dirty) {
|
||||||
|
gui_window_redraw(rec->active);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -854,7 +854,8 @@ static int view_scroll(TEXT_BUFFER_VIEW_REC *view, LINE_REC **lines,
|
|||||||
/* do not bother with vt400 scroll
|
/* do not bother with vt400 scroll
|
||||||
rectangles for now, redraw the
|
rectangles for now, redraw the
|
||||||
whole view */
|
whole view */
|
||||||
textbuffer_view_redraw(view);
|
view->dirty = TRUE;
|
||||||
|
irssi_set_dirty();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user