Don't require CTRL or ALT for treeview window to claim input focus on click.
svn path=/trunk/netsurf/; revision=11078
This commit is contained in:
parent
3a2df10787
commit
4960449811
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue