mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
Off by one, also 200 instead of 30
This commit is contained in:
parent
5e31308da0
commit
c610fcf334
@ -294,7 +294,7 @@ draw_doc(struct session *ses, struct document_view *doc_view, int active)
|
|||||||
int st = int_max(vx, 0);
|
int st = int_max(vx, 0);
|
||||||
int en = int_min(doc_view->document->data[y].length,
|
int en = int_min(doc_view->document->data[y].length,
|
||||||
box->width + vx);
|
box->width + vx);
|
||||||
int max = int_min(en, st + 30);
|
int max = int_min(en, st + 200);
|
||||||
|
|
||||||
if (en - st > 0) {
|
if (en - st > 0) {
|
||||||
draw_line(term, box->x + st - vx, box->y + y - vy,
|
draw_line(term, box->x + st - vx, box->y + y - vy,
|
||||||
@ -308,11 +308,12 @@ draw_doc(struct session *ses, struct document_view *doc_view, int active)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (j = st + 1; j < i; j++) {
|
|
||||||
|
for (j = st; j < i; j++) {
|
||||||
draw_space(term, box->x + j - vx, box->y + y - vy,
|
draw_space(term, box->x + j - vx, box->y + y - vy,
|
||||||
first);
|
first);
|
||||||
}
|
}
|
||||||
for (i = en ? en : 1; i < box->width + vx - 1; i++) {
|
for (i = en ? en : 0; i < box->width + vx; i++) {
|
||||||
draw_space(term, box->x + i - vx, box->y + y - vy,
|
draw_space(term, box->x + i - vx, box->y + y - vy,
|
||||||
last);
|
last);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user