diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1998-09-28 09:23:04 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1998-09-28 09:23:04 -0400 |
commit | 6b6388d0c6a89daaa3c95fc3aa54e38e71c7cc15 (patch) | |
tree | 58386dcfaa0608ea61ec408a14c53ca812dfbc74 /WWW/Library/Implementation/HTFormat.c | |
parent | d719889296edc6adf9987246e9c1181a995fdb85 (diff) | |
download | lynx-snapshots-6b6388d0c6a89daaa3c95fc3aa54e38e71c7cc15.tar.gz |
snapshot of project "lynx", label v2-8-1pre_4
Diffstat (limited to 'WWW/Library/Implementation/HTFormat.c')
-rw-r--r-- | WWW/Library/Implementation/HTFormat.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/WWW/Library/Implementation/HTFormat.c b/WWW/Library/Implementation/HTFormat.c index 899b8640..0a920e0e 100644 --- a/WWW/Library/Implementation/HTFormat.c +++ b/WWW/Library/Implementation/HTFormat.c @@ -503,10 +503,15 @@ PRIVATE void HTDisplayPartial NOARGS /* new hypertext document available */ && ((Newline_partial + display_lines) > NumOfLines_partial) /* current page not complete... */ - && ((Newline_partial + display_lines) < HText_getNumOfLines())) { - /* ^^^^^^^^^^^^^ - * and we MAY display the page in one stage: - * incremental rendering of the first page reported annoying + && ((Newline_partial + + ((min_lines_partial < 1) ? + display_lines : min_lines_partial)) + < HText_getNumOfLines())) { + /* + * and we MAY display certain amount of lines (from lynx.cfg) + * + * By default, wait for complete screen: + * incremental rendering of the first screen reported annoying * on slow network connection. */ NumOfLines_partial = HText_getNumOfLines(); |