Merge pull request #2224 from tarkah/fix/map-size-hint

Call size_hint from Map
This commit is contained in:
Héctor Ramón 2024-01-31 23:31:55 +01:00 committed by GitHub
commit d3727a36c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -308,6 +308,10 @@ where
self.widget.size()
}
fn size_hint(&self) -> Size<Length> {
self.widget.size_hint()
}
fn layout(
&self,
tree: &mut Tree,