1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Call set_screen_dirty in draw_link

I dropped this in c91c763d49, but it seems
necessary to fix some drawing artefacts exhibited with a local patch.
This commit is contained in:
Miciah Dashiel Butler Masters 2006-08-14 07:59:10 +00:00 committed by Miciah Dashiel Butler Masters
parent 8a8fc52eec
commit 0cca8d4af0

View File

@ -293,6 +293,7 @@ draw_link(struct terminal *term, struct document_view *doc_view,
ch = get_char(term, x + xpos, y + ypos);
copy_struct(ch, &doc_view->document->data[y].chars[x]);
set_screen_dirty(term->screen, y + ypos, y + ypos);
}
}
}