summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorDave Higton <dave@davehigton.me.uk>2016-02-07 22:06:35 +0000
committerVincent Sanders <vince@kyllikki.org>2016-02-07 22:06:35 +0000
commit8c05425a2040dc129eb1d56e2317439a566fe293 (patch)
tree816fd2d2237b10986f2dcc8057b283eb580f6e98 /riscos
parentbfbd8383952b049120edceadcfd8c28c75c71a55 (diff)
downloadnetsurf-8c05425a2040dc129eb1d56e2317439a566fe293.tar.gz
netsurf-8c05425a2040dc129eb1d56e2317439a566fe293.tar.bz2
Fix RISC OS pointer shape issue
This is a patch for Mantis issue 2170. The bug is that, if you hover over a link in a window and then close the window with Control-F2, the pointer remains as the link pointer shape. The fix restores the pointer to the default shape before destroying the window.
Diffstat (limited to 'riscos')
-rw-r--r--riscos/window.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/riscos/window.c b/riscos/window.c
index aa2cc1600..ebb1b6ab6 100644
--- a/riscos/window.c
+++ b/riscos/window.c
@@ -1907,6 +1907,7 @@ bool ro_gui_window_handle_local_keypress(struct gui_window *g, wimp_key *key,
case IS_WIMP_KEY + wimp_KEY_CONTROL + wimp_KEY_F2:
/* Close window. */
ro_gui_url_complete_close();
+ gui_window_set_pointer(g, GUI_POINTER_DEFAULT);
browser_window_destroy(g->bw);
return true;