Signed-off-by: dignow <linlong1265@gmail.com>
This commit is contained in:
dignow
2023-08-10 03:55:03 +08:00
parent e89ae475f6
commit b9c8df7019
2 changed files with 7 additions and 11 deletions

View File

@@ -1546,9 +1546,7 @@ impl Connection {
match msg.union {
Some(message::Union::MouseEvent(me)) => {
#[cfg(any(target_os = "android", target_os = "ios"))]
if let Err(e) =
call_main_service_pointer_input("mouse", me.mask, me.x, me.y)
{
if let Err(e) = call_main_service_pointer_input("mouse", me.mask, me.x, me.y) {
log::debug!("call_main_service_pointer_input fail:{}", e);
}
#[cfg(not(any(target_os = "android", target_os = "ios")))]
@@ -1582,12 +1580,7 @@ impl Connection {
)
}
Some(touch_event::Union::PanEnd(pan_end)) => {
call_main_service_pointer_input(
"touch",
6,
pan_end.x,
pan_end.y,
)
call_main_service_pointer_input("touch", 6, pan_end.x, pan_end.y)
}
_ => Ok(()),
},