mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-10 01:28:41 -06:00
skip cursor lock on android
This commit is contained in:
parent
3eddda0886
commit
a3e5df0304
|
@ -9,14 +9,16 @@ pub fn update_cursor_lock_state(
|
|||
lock: UniqueView<CursorLock>,
|
||||
display: NonSendSync<UniqueView<Renderer>>
|
||||
) {
|
||||
if lock.is_inserted_or_modified() {
|
||||
let gl_window = display.display.gl_window();
|
||||
let window = gl_window.window();
|
||||
window.set_cursor_grab(match lock.0 {
|
||||
true => CursorGrabMode::Confined,
|
||||
false => CursorGrabMode::None,
|
||||
}).expect("Failed to change cursor grab state");
|
||||
window.set_cursor_visible(!lock.0);
|
||||
#[cfg(not(target_os = "android"))] {
|
||||
if lock.is_inserted_or_modified() {
|
||||
let gl_window = display.display.gl_window();
|
||||
let window = gl_window.window();
|
||||
window.set_cursor_grab(match lock.0 {
|
||||
true => CursorGrabMode::Confined,
|
||||
false => CursorGrabMode::None,
|
||||
}).expect("Failed to change cursor grab state");
|
||||
window.set_cursor_visible(!lock.0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue