avoid using unimplemented input method

pull/535/head
tomoki maekawa 4 months ago committed by GitHub
parent 2bb2f8373b
commit 59c582ccc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -327,9 +327,7 @@ We call this method `run()` in the event loop for the following events.
```rust
match event {
// ...
} if window_id == state.window().id() => if !state.input(event) {
match event {
} if window_id == state.window().id() => match event {
// ...
WindowEvent::Resized(physical_size) => {
@ -341,7 +339,7 @@ match event {
}
// ...
}
}
// ...
}
```

Loading…
Cancel
Save