mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 13:51:30 +11:00
Fixed grabbing example.
This commit is contained in:
parent
11e27889ae
commit
d2ac6cfa11
|
@ -18,8 +18,8 @@ fn main() {
|
|||
|
||||
let context = support::load(&window);
|
||||
let mut grabbed = false;
|
||||
|
||||
for event in window.poll_events() {
|
||||
|
||||
for event in window.wait_events() {
|
||||
match event {
|
||||
Event::KeyboardInput(ElementState::Pressed, _, _) => {
|
||||
if grabbed {
|
||||
|
@ -33,6 +33,8 @@ fn main() {
|
|||
}
|
||||
},
|
||||
|
||||
Event::Closed => break,
|
||||
|
||||
a @ Event::MouseMoved(_) => {
|
||||
println!("{:?}", a);
|
||||
},
|
||||
|
@ -44,4 +46,3 @@ fn main() {
|
|||
let _ = window.swap_buffers();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue