From b661f3deafd67876706cb2e5e39eaeef7620931a Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Tue, 3 Jun 2008 21:51:25 +0000 Subject: Don't constrain mouse pointer to window area during text selection. svn path=/trunk/netsurf/; revision=4256 --- riscos/textselection.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'riscos/textselection.c') diff --git a/riscos/textselection.c b/riscos/textselection.c index d9d1916ca..9f094c5de 100644 --- a/riscos/textselection.c +++ b/riscos/textselection.c @@ -125,10 +125,11 @@ void gui_start_selection(struct gui_window *g) gui_track_gui_window = g; drag.type = wimp_DRAG_USER_POINT; - drag.bbox.x0 = state.visible.x0; - drag.bbox.y0 = state.visible.y0; - drag.bbox.x1 = state.visible.x1; - drag.bbox.y1 = state.visible.y1; + /* Don't constrain mouse pointer during drags */ + drag.bbox.x0 = -16384; + drag.bbox.y0 = -16384; + drag.bbox.x1 = 16384; + drag.bbox.y1 = 16384; error = xwimp_drag_box(&drag); if (error) { -- cgit v1.2.3