summaryrefslogtreecommitdiffstats
path: root/runtime/src/program/state.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-08-08 01:25:00 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-08-08 01:25:00 +0200
commit422568dee49fa6b814ae0131a3f88d4ae2be243b (patch)
tree39e458a2dd545b90f81d3066c29a74ec27dec505 /runtime/src/program/state.rs
parentd5ffe98ce939990e6c8ef6f40895cd1f9633fe18 (diff)
downloadiced-422568dee49fa6b814ae0131a3f88d4ae2be243b.tar.gz
iced-422568dee49fa6b814ae0131a3f88d4ae2be243b.tar.bz2
iced-422568dee49fa6b814ae0131a3f88d4ae2be243b.zip
Introduce `black_box` and `chain` in `widget::operation`
Diffstat (limited to 'runtime/src/program/state.rs')
-rw-r--r--runtime/src/program/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/program/state.rs b/runtime/src/program/state.rs
index e51ad0cb..c377814a 100644
--- a/runtime/src/program/state.rs
+++ b/runtime/src/program/state.rs
@@ -178,7 +178,7 @@ where
pub fn operate(
&mut self,
renderer: &mut P::Renderer,
- operations: impl Iterator<Item = Box<dyn Operation<()>>>,
+ operations: impl Iterator<Item = Box<dyn Operation>>,
bounds: Size,
debug: &mut Debug,
) {