From 3bcc79ccf044e08dae4285229f62ad5329059ab6 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Mon, 11 Feb 2013 16:10:19 +0000 Subject: Don't need to redraw for caret removal if using a native caret. --- desktop/textarea.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/desktop/textarea.c b/desktop/textarea.c index 441571629..f02ef3289 100644 --- a/desktop/textarea.c +++ b/desktop/textarea.c @@ -1241,7 +1241,8 @@ bool textarea_set_caret(struct textarea *ta, int caret) } /* Delete the old caret */ - if (ta->caret_pos.char_off != -1) { + if (ta->caret_pos.char_off != -1 && + ta->flags & TEXTAREA_INTERNAL_CARET) { x0 = ta->caret_x - ta->scroll_x; y0 = ta->caret_y - ta->scroll_y; width = 2; -- cgit v1.2.3