mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 15:29:45 +03:00
Give caret for alt and ctrl since both start an edit.
svn path=/trunk/netsurf/; revision=11064
This commit is contained in:
parent
d745dae903
commit
95870c95dd
@ -759,7 +759,9 @@ static bool ro_treeview_mouse_click(wimp_pointer *pointer)
|
||||
tv->drag = true;
|
||||
}
|
||||
|
||||
if (mouse & (BROWSER_MOUSE_CLICK_1 | BROWSER_MOUSE_MOD_2))
|
||||
if ((mouse & BROWSER_MOUSE_CLICK_1) &&
|
||||
(mouse & (BROWSER_MOUSE_MOD_2 |
|
||||
BROWSER_MOUSE_MOD_3)))
|
||||
xwimp_set_caret_position(tv->w, -1, -100, -100, 32, -1);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user