1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-05-28 23:34:49 -05:00

Oops - that unscroll stuff was a little broken...

[originally from svn r348]
This commit is contained in:
Simon Tatham 1999-12-09 17:10:28 +00:00
parent ba279cafd0
commit 9e6856ef8e

View File

@ -150,7 +150,7 @@ void term_update(void) {
Context ctx;
ctx = get_ctx();
if (ctx) {
if ( (seen_key_event && (unscroll_event & US_KEY)) &&
if ( (seen_key_event && (unscroll_event & US_KEY)) ||
(seen_disp_event && (unscroll_event & US_DISP)) ) {
disptop = scrtop;
seen_disp_event = seen_key_event = 0;