1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Scrollbar was failing to update when no scrollback-reset event had happened

[originally from svn r1126]
This commit is contained in:
Simon Tatham 2001-05-14 13:31:14 +00:00
parent 29cce22a90
commit 8e5e0225e5

View File

@ -298,11 +298,12 @@ void term_update(void)
Context ctx;
ctx = get_ctx();
if (ctx) {
if (seen_disp_event)
update_sbar();
if ((seen_key_event && (cfg.scroll_on_key)) ||
(seen_disp_event && (cfg.scroll_on_disp))) {
disptop = 0; /* return to main screen */
seen_disp_event = seen_key_event = 0;
update_sbar();
}
do_paint(ctx, TRUE);
sys_cursor(curs.x, curs.y - disptop);