Implement Operation::scrollable for element::Map

This commit is contained in:
Héctor Ramón Jiménez 2022-11-09 23:48:54 +01:00
parent af6f7945a9
commit 397f2910e0
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -316,6 +316,14 @@ where
) {
self.operation.focusable(state, id);
}
fn scrollable(
&mut self,
state: &mut dyn widget::operation::Scrollable,
id: Option<&widget::Id>,
) {
self.operation.scrollable(state, id);
}
}
self.widget