mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-22 22:41:30 +03:00
Add triple click to mouse event logger.
This commit is contained in:
parent
a3c72894b9
commit
55dd035686
@ -30,12 +30,13 @@
|
||||
*/
|
||||
void browser_mouse_state_dump(browser_mouse_state mouse)
|
||||
{
|
||||
LOG(("mouse state: %s %s %s %s %s %s %s %s %s %s %s %s %s",
|
||||
LOG(("mouse state: %s %s %s %s %s %s %s %s %s %s %s %s %s %s",
|
||||
mouse & BROWSER_MOUSE_PRESS_1 ? "P1" : " ",
|
||||
mouse & BROWSER_MOUSE_PRESS_2 ? "P2" : " ",
|
||||
mouse & BROWSER_MOUSE_CLICK_1 ? "C1" : " ",
|
||||
mouse & BROWSER_MOUSE_CLICK_2 ? "C2" : " ",
|
||||
mouse & BROWSER_MOUSE_DOUBLE_CLICK ? "DC" : " ",
|
||||
mouse & BROWSER_MOUSE_TRIPLE_CLICK ? "TC" : " ",
|
||||
mouse & BROWSER_MOUSE_DRAG_1 ? "D1" : " ",
|
||||
mouse & BROWSER_MOUSE_DRAG_2 ? "D2" : " ",
|
||||
mouse & BROWSER_MOUSE_DRAG_ON ? "DO" : " ",
|
||||
|
Loading…
Reference in New Issue
Block a user