Implement Operation::scrollable for widget::action::Map

This commit is contained in:
Héctor Ramón Jiménez 2022-11-09 23:51:42 +01:00
parent 1283f2153c
commit 11ec80dee2
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -85,4 +85,12 @@ where
) {
self.operation.focusable(state, id);
}
fn scrollable(
&mut self,
state: &mut dyn operation::Scrollable,
id: Option<&Id>,
) {
self.operation.scrollable(state, id);
}
}