tmp commit
Signed-off-by: dignow <linlong1265@gmail.com>
This commit is contained in:
parent
06ee68f836
commit
93a600a0a8
6 changed files with 155 additions and 57 deletions
|
|
@ -1573,20 +1573,20 @@ impl Connection {
|
|||
pan_start.y,
|
||||
)
|
||||
}
|
||||
Some(touch_event::Union::PanUpdate(pan_start)) => {
|
||||
Some(touch_event::Union::PanUpdate(pan_update)) => {
|
||||
call_main_service_pointer_input(
|
||||
"touch".to_string(),
|
||||
5,
|
||||
pan_start.x,
|
||||
pan_start.y,
|
||||
pan_update.x,
|
||||
pan_update.y,
|
||||
)
|
||||
}
|
||||
Some(touch_event::Union::PanEnd(pan_start)) => {
|
||||
Some(touch_event::Union::PanEnd(pan_end)) => {
|
||||
call_main_service_pointer_input(
|
||||
"touch".to_string(),
|
||||
6,
|
||||
pan_start.x,
|
||||
pan_start.y,
|
||||
pan_end.x,
|
||||
pan_end.y,
|
||||
)
|
||||
}
|
||||
_ => Ok(()),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue