diff options
Diffstat (limited to 'winit/src/application.rs')
-rw-r--r-- | winit/src/application.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winit/src/application.rs b/winit/src/application.rs index 0fc67adc..ad461738 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -250,7 +250,8 @@ where if matches!( event, winit::event::Event::WindowEvent { - event: winit::event::WindowEvent::Resized(_), + event: winit::event::WindowEvent::Resized(_) + | winit::event::WindowEvent::Moved(_), .. } ) { |