From 0cca8d4af067f7bf252ffde9f641ebf67275d21d Mon Sep 17 00:00:00 2001 From: Miciah Dashiel Butler Masters Date: Mon, 14 Aug 2006 07:59:10 +0000 Subject: [PATCH] Call set_screen_dirty in draw_link I dropped this in c91c763d49bc7cd01aa06c0dabbd15fecc97da80, but it seems necessary to fix some drawing artefacts exhibited with a local patch. --- src/viewer/text/link.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/viewer/text/link.c b/src/viewer/text/link.c index 99163fa1f..42d5c39bb 100644 --- a/src/viewer/text/link.c +++ b/src/viewer/text/link.c @@ -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); } } }