summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-07-05 01:23:25 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-07-05 01:23:25 +0000
commita102f34fa6fe25b928c0d27bcf7bae60c4906d95 (patch)
tree0479a70740cc5c0527b7c7799ae2eaa615898216 /riscos
parentcd59d27008420b5a6337c1fcef230b8f3b628c0e (diff)
downloadnetsurf-a102f34fa6fe25b928c0d27bcf7bae60c4906d95.tar.gz
netsurf-a102f34fa6fe25b928c0d27bcf7bae60c4906d95.tar.bz2
Make adjust-clicking submit open a new window (fix 1430135)
svn path=/trunk/netsurf/; revision=2716
Diffstat (limited to 'riscos')
-rw-r--r--riscos/window.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/riscos/window.c b/riscos/window.c
index 34ba908a5..9ffc0dc20 100644
--- a/riscos/window.c
+++ b/riscos/window.c
@@ -1352,8 +1352,12 @@ void ro_gui_window_mouse_at(struct gui_window *g, wimp_pointer *pointer)
if (error) {
LOG(("xwimp_get_window_state: 0x%x: %s",
error->errnum, error->errmess));
- warn_user("WimpError", error->errmess);
- return;
+/*
+ * the WIMP sometimes fails to realise the pointer has left a NetSurf window
+ * so we get an error -- there is no gain from telling the user about this
+ *
+ * warn_user("WimpError", error->errmess);
+*/ return;
}
x = window_x_units(pointer->pos.x, &state) / 2 / g->option.scale;