mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
control_flow example: fix wait_cancelled logic again (#1511)
This commit is contained in:
@@ -41,15 +41,9 @@ fn main() {
|
||||
println!("{:?}", event);
|
||||
match event {
|
||||
Event::NewEvents(start_cause) => {
|
||||
wait_cancelled = mode == Mode::WaitUntil;
|
||||
match start_cause {
|
||||
StartCause::ResumeTimeReached {
|
||||
start: _,
|
||||
requested_resume: _,
|
||||
} => {
|
||||
wait_cancelled = false;
|
||||
}
|
||||
_ => (),
|
||||
wait_cancelled = match start_cause {
|
||||
StartCause::WaitCancelled { .. } => mode == Mode::WaitUntil,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
Event::WindowEvent { event, .. } => match event {
|
||||
|
||||
Reference in New Issue
Block a user