mirror of
https://gitlab.com/marcandre.lureau/qemu-display.git
synced 2024-12-22 05:35:20 +00:00
rdw: round relative mouse motion
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
71e0d57efb
commit
bb9b4df587
@ -93,7 +93,7 @@ mod imp {
|
||||
.connect_motion_relative(clone!(@weak self as this => move |_, dx, dy| {
|
||||
log::debug!("motion-relative: {:?}", (dx, dy));
|
||||
MainContext::default().spawn_local(clone!(@weak this => async move {
|
||||
let _ = this.obj().console().mouse.rel_motion(dx as _, dy as _).await;
|
||||
let _ = this.obj().console().mouse.rel_motion(dx.round() as _, dy.round() as _).await;
|
||||
}));
|
||||
}));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user