From fb2a62f3fe337d55d555d56b819ac6c1f16cfb75 Mon Sep 17 00:00:00 2001 From: ptt Date: Sat, 10 Jul 2004 18:52:50 +0000 Subject: scroll fix git-svn-id: http://opensvn.csie.org/pttbbs/branches/ptt.fpg@2126 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/edit.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mbbsd/edit.c b/mbbsd/edit.c index 446a91af..3268bde1 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -2498,13 +2498,17 @@ vedit(char *fpath, int saveheader, int *islocal) rscroll(); } } - if (curr_window_line == b_lines) { + if (curr_window_line == b_lines || + (phone_mode && curr_window_line == b_lines - 1)) { curr_window_line = t_lines - 2; if (!top_of_win->next) indigestion(7); else { top_of_win = top_of_win->next; - move(b_lines, 0); + if(phone_mode) + move(b_lines-1, 0); + else + move(b_lines, 0); clrtoeol(); scroll(); } -- cgit v1.2.3