mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
parent
a801976727
commit
252a10a859
@ -245,8 +245,12 @@ void GenodeConsole::handle_input(unsigned)
|
||||
}
|
||||
}
|
||||
|
||||
if (is_wheel)
|
||||
_vbox_mouse->PutMouseEvent(0, 0, ev.rx(), ev.ry(), 0);
|
||||
if (is_wheel) {
|
||||
if (_last_received_motion_event_was_absolute)
|
||||
_vbox_mouse->PutMouseEventAbsolute(_ax, _ay, -ev.ry(), -ev.rx(), 0);
|
||||
else
|
||||
_vbox_mouse->PutMouseEvent(0, 0, -ev.ry(), -ev.rx(), 0);
|
||||
}
|
||||
|
||||
if (is_touch) {
|
||||
/* if multitouch queue is full - send it */
|
||||
|
Loading…
Reference in New Issue
Block a user