mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
10419ff441
Fixes #1402.
42 lines
1.2 KiB
Rust
42 lines
1.2 KiB
Rust
#![allow(clippy::single_match)]
|
|
|
|
use simple_logger::SimpleLogger;
|
|
use winit::event::{Event, VirtualKeyCode, WindowEvent};
|
|
use winit::event_loop::EventLoop;
|
|
use winit::window::WindowBuilder;
|
|
|
|
fn main() {
|
|
SimpleLogger::new().init().unwrap();
|
|
let event_loop = EventLoop::new();
|
|
|
|
let window = WindowBuilder::new()
|
|
.with_title("A fantastic window!")
|
|
.build(&event_loop)
|
|
.unwrap();
|
|
|
|
event_loop.run(move |event, _, control_flow| {
|
|
control_flow.set_wait();
|
|
|
|
match event {
|
|
Event::WindowEvent {
|
|
event: WindowEvent::CloseRequested,
|
|
..
|
|
} => control_flow.set_exit(),
|
|
|
|
// Keyboard input event to handle minimize via a hotkey
|
|
Event::WindowEvent {
|
|
event: WindowEvent::KeyboardInput { input, .. },
|
|
window_id,
|
|
} => {
|
|
if window_id == window.id() {
|
|
// Pressing the 'M' key will minimize the window
|
|
if input.virtual_keycode == Some(VirtualKeyCode::M) {
|
|
window.set_minimized(true);
|
|
}
|
|
}
|
|
}
|
|
_ => (),
|
|
}
|
|
});
|
|
}
|