diff options
author | 2022-12-22 15:03:23 +0100 | |
---|---|---|
committer | 2022-12-22 15:03:23 +0100 | |
commit | a6d0d5773f0561a841a84b538523cbd97e91eccd (patch) | |
tree | ecd41b861f0ff38736373f532ee2c7d2664dd420 /lazy/src/component.rs | |
parent | 678de1187994f29e3701740617bb5b1963f80c69 (diff) | |
parent | 5f2ec138d7b6793f781aab16ec59e0224ac4edef (diff) | |
download | iced-a6d0d5773f0561a841a84b538523cbd97e91eccd.tar.gz iced-a6d0d5773f0561a841a84b538523cbd97e91eccd.tar.bz2 iced-a6d0d5773f0561a841a84b538523cbd97e91eccd.zip |
Merge pull request #1615 from iced-rs/fix/responsive-operations
Fix operations for `Responsive` widget
Diffstat (limited to '')
-rw-r--r-- | lazy/src/component.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lazy/src/component.rs b/lazy/src/component.rs index 3d7b8758..ad15d69d 100644 --- a/lazy/src/component.rs +++ b/lazy/src/component.rs @@ -234,6 +234,7 @@ where &self, tree: &mut Tree, layout: Layout<'_>, + renderer: &Renderer, operation: &mut dyn widget::Operation<Message>, ) { struct MapOperation<'a, B> { @@ -274,6 +275,7 @@ where element.as_widget().operate( &mut tree.children[0], layout, + renderer, &mut MapOperation { operation }, ); }); |