cargo fmt

This commit is contained in:
Richard Feldman 2020-07-21 01:34:30 -04:00
parent 5b7427b762
commit 94367867ea

View file

@ -150,11 +150,7 @@ fn run_event_loop() -> Result<(), Box<dyn Error>> {
.. ..
} => { } => {
if let Some(virtual_keycode) = input.virtual_keycode { if let Some(virtual_keycode) = input.virtual_keycode {
handle_keydown( handle_keydown(input.state, virtual_keycode, keyboard_modifiers);
input.state,
virtual_keycode,
keyboard_modifiers,
);
} }
} }
winit::event::Event::WindowEvent { winit::event::Event::WindowEvent {