diff options
-rw-r--r-- | lazy/src/component.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lazy/src/component.rs b/lazy/src/component.rs index f6c331b9..4a43223d 100644 --- a/lazy/src/component.rs +++ b/lazy/src/component.rs @@ -361,6 +361,22 @@ where ) { self.operation.text_input(state, id); } + + fn scrollable( + &mut self, + state: &mut dyn widget::operation::Scrollable, + id: Option<&widget::Id>, + ) { + self.operation.scrollable(state, id); + } + + fn custom( + &mut self, + state: &mut dyn std::any::Any, + id: Option<&widget::Id>, + ) { + self.operation.custom(state, id); + } } let tree = tree.state.downcast_mut::<Rc<RefCell<Option<Tree>>>>(); |