summaryrefslogtreecommitdiffstats
path: root/native/src/command/action.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-03-05 06:23:40 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-03-05 06:23:40 +0100
commit8af69be47e88896b3c5f70174db609eee0c67971 (patch)
treebf9b04335def215c2c3bacda2afe4c2125346dc8 /native/src/command/action.rs
parent43414bbdfb080b7aa3c702d944cc9d0c9c0fd14b (diff)
downloadiced-8af69be47e88896b3c5f70174db609eee0c67971.tar.gz
iced-8af69be47e88896b3c5f70174db609eee0c67971.tar.bz2
iced-8af69be47e88896b3c5f70174db609eee0c67971.zip
Converge `Command` types from `iced_futures` and `iced_native`
Diffstat (limited to '')
-rw-r--r--native/src/command/action.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/native/src/command/action.rs b/native/src/command/action.rs
index d1589c05..6c74f0ef 100644
--- a/native/src/command/action.rs
+++ b/native/src/command/action.rs
@@ -1,7 +1,7 @@
use crate::clipboard;
+use crate::core::widget;
use crate::font;
use crate::system;
-use crate::widget;
use crate::window;
use iced_futures::MaybeSend;
@@ -28,7 +28,7 @@ pub enum Action<T> {
System(system::Action<T>),
/// Run a widget action.
- Widget(widget::Action<T>),
+ Widget(Box<dyn widget::Operation<T>>),
/// Load a font from its bytes.
LoadFont {
@@ -59,7 +59,9 @@ impl<T> Action<T> {
Self::Clipboard(action) => Action::Clipboard(action.map(f)),
Self::Window(window) => Action::Window(window.map(f)),
Self::System(system) => Action::System(system.map(f)),
- Self::Widget(widget) => Action::Widget(widget.map(f)),
+ Self::Widget(operation) => {
+ Action::Widget(Box::new(widget::operation::map(operation, f)))
+ }
Self::LoadFont { bytes, tagger } => Action::LoadFont {
bytes,
tagger: Box::new(move |result| f(tagger(result))),