mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-24 09:28:23 +00:00
fix CI
This commit is contained in:
parent
780b57f597
commit
7944e0bc36
1 changed files with 2 additions and 2 deletions
|
|
@ -357,7 +357,7 @@ fn handle_mouse_(evt: &MouseEvent, conn: i32) {
|
||||||
modifier_sleep();
|
modifier_sleep();
|
||||||
to_release.push(key);
|
to_release.push(key);
|
||||||
} else {
|
} else {
|
||||||
KEYS_DOWN.lock().unwrap().insert(ck.value(), Instant::now());
|
KEYS_DOWN.lock().unwrap().insert(ck.value() as _, Instant::now());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -577,7 +577,7 @@ fn handle_key_(evt: &KeyEvent) {
|
||||||
modifier_sleep();
|
modifier_sleep();
|
||||||
to_release.push(key);
|
to_release.push(key);
|
||||||
} else {
|
} else {
|
||||||
KEYS_DOWN.lock().unwrap().insert(ck.value(), Instant::now());
|
KEYS_DOWN.lock().unwrap().insert(ck.value() as _, Instant::now());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue