diff options
Diffstat (limited to '')
-rw-r--r-- | winit/src/application.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/winit/src/application.rs b/winit/src/application.rs index 21a985e8..24c98d46 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -861,6 +861,9 @@ pub fn run_command<A, C, E>( .send_event(tagger(Ok(()))) .expect("Send message to event loop"); } + command::Action::Custom(_) => { + log::warn!("Unsupported custom action in `iced_winit` shell"); + } } } } |