From 496044981136c837566881cdee9b7c4d7b6c468c Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 16 Dec 2010 21:31:14 +0000 Subject: Don't require CTRL or ALT for treeview window to claim input focus on click. svn path=/trunk/netsurf/; revision=11078 --- riscos/treeview.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'riscos/treeview.c') diff --git a/riscos/treeview.c b/riscos/treeview.c index baf22829d..bc9143b73 100644 --- a/riscos/treeview.c +++ b/riscos/treeview.c @@ -759,9 +759,7 @@ static bool ro_treeview_mouse_click(wimp_pointer *pointer) tv->drag = true; } - if ((mouse & BROWSER_MOUSE_CLICK_1) && - (mouse & (BROWSER_MOUSE_MOD_2 | - BROWSER_MOUSE_MOD_3))) + if (mouse & BROWSER_MOUSE_CLICK_1) xwimp_set_caret_position(tv->w, -1, -100, -100, 32, -1); } -- cgit v1.2.3