1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-28 00:02:10 -05:00

Scrollbar now updates if a character appears while scrolled back.

[originally from svn r105]
This commit is contained in:
Ben Harris 1999-03-14 20:09:03 +00:00
parent e74609fa1c
commit 6537147dd9

View File

@ -1187,9 +1187,11 @@ void term_out(void) {
check_selection (cpos, cpos+1); check_selection (cpos, cpos+1);
} }
if (must_update || nl_count > MAXNL) if (must_update || nl_count > MAXNL) {
update_sbar();
term_update(); term_update();
} }
}
/* /*
* Compare two lines to determine whether they are sufficiently * Compare two lines to determine whether they are sufficiently