From 51e44e036a5e2acf67caae4fc7265e6185f13d42 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 21 Jan 2025 00:52:45 +0100 Subject: Add `bounds` argument to `Component::operate` --- widget/src/lazy/component.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/widget/src/lazy/component.rs b/widget/src/lazy/component.rs index c215de7a..0cfcc953 100644 --- a/widget/src/lazy/component.rs +++ b/widget/src/lazy/component.rs @@ -77,6 +77,7 @@ pub trait Component { /// By default, it does nothing. fn operate( &self, + _bounds: Rectangle, _state: &mut Self::State, _operation: &mut dyn widget::Operation, ) { @@ -191,11 +192,13 @@ where fn rebuild_element_with_operation( &self, + layout: Layout<'_>, operation: &mut dyn widget::Operation, ) { let heads = self.state.borrow_mut().take().unwrap().into_heads(); heads.component.operate( + layout.bounds(), self.tree .borrow_mut() .borrow_mut() @@ -382,7 +385,7 @@ where renderer: &Renderer, operation: &mut dyn widget::Operation, ) { - self.rebuild_element_with_operation(operation); + self.rebuild_element_with_operation(layout, operation); let tree = tree.state.downcast_mut::>>>(); self.with_element(|element| { -- cgit