1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-08-25 21:44:47 -04:00

Scrolls down one line earlier.

This commit is contained in:
Witold Filipczyk 2006-12-11 19:17:48 +01:00 committed by Witold Filipczyk
parent 4e93cbf496
commit 9064e6323b

View File

@ -83,7 +83,7 @@ write_to_festival(struct fest *fest)
w = safe_write(fest->out, buf.source, buf.length);
if (w >= 0) {
if (fest->line > doc_view->vs->y + doc_view->box.height) {
if (fest->line >= doc_view->vs->y + doc_view->box.height) {
move_page_down(doc_view->session, doc_view);
refresh_view(doc_view->session, doc_view, 0);
}