summaryrefslogtreecommitdiff
path: root/render/form.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-03-11 12:57:33 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2013-03-11 12:57:33 +0000
commit41e4928e25039119b97035640cf97b1949a129d4 (patch)
treea5867b83fcf36e2478e55400028a7898891db9cc /render/form.c
parentf3b515540e17c6742fa601057bf632763885d027 (diff)
downloadnetsurf-41e4928e25039119b97035640cf97b1949a129d4.tar.gz
netsurf-41e4928e25039119b97035640cf97b1949a129d4.tar.bz2
Fix pointer shape and status bar messages for textareas and their scrollbars.
Diffstat (limited to 'render/form.c')
-rw-r--r--render/form.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/render/form.c b/render/form.c
index 46d5b28f6..a6784e26f 100644
--- a/render/form.c
+++ b/render/form.c
@@ -1249,8 +1249,9 @@ const char *form_select_mouse_action(struct form_control *control,
* event is taking place on the scrollbar widget area
*/
x -= scrollbar_x;
- return scrollbar_mouse_action(menu->scrollbar,
- mouse, x, y);
+ return scrollbar_mouse_status_to_message(
+ scrollbar_mouse_action(menu->scrollbar,
+ mouse, x, y));
}