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 );