rdw: round relative mouse motion

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
Marc-André Lureau 2023-01-17 14:53:44 +04:00
parent 71e0d57efb
commit bb9b4df587
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}));
}));