From 52f57b78fc6ac1fe2104d5c82041e6664eaaf724 Mon Sep 17 00:00:00 2001 From: Ryszard Glab Date: Wed, 26 Apr 2000 14:51:18 +0000 Subject: [PATCH] ChangeLog 20000426-16:58 GMT+1 --- harbour/ChangeLog | 6 ++++++ harbour/source/rtl/gtcrs/gtcrs.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 658a888d23..3f71740aed 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,9 @@ +20000426-16:58 GMT+1 Ryszard Glab + + *source/rtl/gtcrs/gtcrs.c + * the terminal is no longer scrolled up if something is + written at MAXROW(),MAXCOL() position + 20000426-15:17 GMT+1 Antonio Linares + source/compiler/genobj32.c * compiler version added into OBJ record diff --git a/harbour/source/rtl/gtcrs/gtcrs.c b/harbour/source/rtl/gtcrs/gtcrs.c index db32e7b813..0ae4e70dcd 100644 --- a/harbour/source/rtl/gtcrs/gtcrs.c +++ b/harbour/source/rtl/gtcrs/gtcrs.c @@ -105,7 +105,7 @@ static void hb_gt_Initialize_Terminal( void ) cbreak(); noecho(); nodelay( stdscr, 1 ); - scrollok( stdscr, TRUE ); + scrollok( stdscr, FALSE ); raw(); keypad( stdscr, FALSE );