From 32851fcfe38f4316b46c5350fe03a8c2ba0e67bf Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 11 Aug 2000 22:13:27 +0000 Subject: [PATCH] Entry line scrolling works better. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@587 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-text/gui-entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-text/gui-entry.c b/src/fe-text/gui-entry.c index 13eba50c..7e02e156 100644 --- a/src/fe-text/gui-entry.c +++ b/src/fe-text/gui-entry.c @@ -37,7 +37,7 @@ static void entry_screenpos(void) scrstart = 0; scrpos = pos; } else { - scrpos = COLS-1-promptlen; + scrpos = COLS/3*2-promptlen; scrstart = pos-scrpos; } }