diff options
Diffstat (limited to 'WWW/Library/Implementation/HTFormat.c')
-rw-r--r-- | WWW/Library/Implementation/HTFormat.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTFormat.c b/WWW/Library/Implementation/HTFormat.c index e1c9a851..899b8640 100644 --- a/WWW/Library/Implementation/HTFormat.c +++ b/WWW/Library/Implementation/HTFormat.c @@ -503,9 +503,11 @@ PRIVATE void HTDisplayPartial NOARGS /* new hypertext document available */ && ((Newline_partial + display_lines) > NumOfLines_partial) /* current page not complete... */ - && ((Newline_partial + 2) < HText_getNumOfLines())) { - /* and we MAY display at least a couple of lines on the top. - * + && ((Newline_partial + display_lines) < HText_getNumOfLines())) { + /* ^^^^^^^^^^^^^ + * and we MAY display the page in one stage: + * incremental rendering of the first page reported annoying + * on slow network connection. */ NumOfLines_partial = HText_getNumOfLines(); HText_pageDisplay(Newline_partial, ""); |