summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-08-11 22:13:27 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-08-11 22:13:27 +0000
commit32851fcfe38f4316b46c5350fe03a8c2ba0e67bf (patch)
treecb93d86face9dbcf2814dea75ed0ca99f2866484
parentccf12d2bfc9e0ab401ede4300f13a5c17e07e0bf (diff)
downloadirssi-32851fcfe38f4316b46c5350fe03a8c2ba0e67bf.zip
Entry line scrolling works better.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@587 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r--src/fe-text/gui-entry.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}