diff options
author | 2023-11-24 16:08:03 +0800 | |
---|---|---|
committer | 2024-02-03 14:54:59 +0100 | |
commit | 6e97595d953811fe3f5877e13022c3b5d3b070a6 (patch) | |
tree | 86a56f68ac6dae948ccc2779defa63f0e6fcd3bf /winit/src/application.rs | |
parent | 0b2c9db22868c43e4dd160b66abddce0846991b1 (diff) | |
download | iced-6e97595d953811fe3f5877e13022c3b5d3b070a6.tar.gz iced-6e97595d953811fe3f5877e13022c3b5d3b070a6.tar.bz2 iced-6e97595d953811fe3f5877e13022c3b5d3b070a6.zip |
feat: somewhere to place extra actions by platform
I have view iced-sckt forked iced, and add the extra actions. and there
do are some extra actions, like set margin for layer-shell, set lock for
ext-session-shell. I think add an any will be of help maybe
Diffstat (limited to 'winit/src/application.rs')
-rw-r--r-- | winit/src/application.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winit/src/application.rs b/winit/src/application.rs index 21a985e8..e44b3ca5 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -861,6 +861,7 @@ pub fn run_command<A, C, E>( .send_event(tagger(Ok(()))) .expect("Send message to event loop"); } + command::Action::PlatformSpecific(_) => unimplemented!(), } } } |