From 26569069038d60c05e935c45d34cc5c8099c798f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 3 Feb 2024 15:10:45 +0100 Subject: Rename `PlateformSpecific` variant in `Action` to `Custom` --- winit/src/application.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'winit/src/application.rs') diff --git a/winit/src/application.rs b/winit/src/application.rs index e44b3ca5..24c98d46 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -861,7 +861,9 @@ pub fn run_command( .send_event(tagger(Ok(()))) .expect("Send message to event loop"); } - command::Action::PlatformSpecific(_) => unimplemented!(), + command::Action::Custom(_) => { + log::warn!("Unsupported custom action in `iced_winit` shell"); + } } } } -- cgit