summaryrefslogtreecommitdiff
path: root/desktop/textarea.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-02-08 13:16:24 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2013-02-08 13:16:24 +0000
commit9ec663f3a95242fe42718d105c478f19be554fd3 (patch)
tree0f71adbd2e1d6d2afaeae89309ac8abe707f62be /desktop/textarea.h
parent76b0e59b18037ddc244990e87c07161a710cc93b (diff)
downloadnetsurf-9ec663f3a95242fe42718d105c478f19be554fd3.tar.gz
netsurf-9ec663f3a95242fe42718d105c478f19be554fd3.tar.bz2
Tweak selection rendering. Adjusting layout doesn't emit redraw request. Client must redraw when it wants it.
Diffstat (limited to 'desktop/textarea.h')
-rw-r--r--desktop/textarea.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/textarea.h b/desktop/textarea.h
index 4276868c9..54232712e 100644
--- a/desktop/textarea.h
+++ b/desktop/textarea.h
@@ -196,7 +196,7 @@ void textarea_get_dimensions(struct textarea *ta, int *width, int *height);
/**
* Set the dimensions of a textarea, causing a reflow and
- * emitting a redraw request.
+ * Does not emit a redraw request. Up to client to call textarea_redraw.
*
* \param width the new width of the textarea
* \param height the new height of the textarea
@@ -204,8 +204,8 @@ void textarea_get_dimensions(struct textarea *ta, int *width, int *height);
void textarea_set_dimensions(struct textarea *ta, int width, int height);
/**
- * Set the dimensions and padding of a textarea, causing a reflow and
- * emitting a redraw request.
+ * Set the dimensions and padding of a textarea, causing a reflow.
+ * Does not emit a redraw request. Up to client to call textarea_redraw.
*
* \param width the new width of the textarea
* \param height the new height of the textarea