Fix size_hint for keyed_column

This commit is contained in:
Héctor Ramón Jiménez 2024-01-09 06:44:15 +01:00
parent d62bb8193c
commit e710e76949
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
3 changed files with 27 additions and 28 deletions

View file

@ -80,6 +80,7 @@ pub fn keyed_column<'a, Key, Message, Renderer>(
) -> keyed::Column<'a, Key, Message, Renderer>
where
Key: Copy + PartialEq,
Renderer: core::Renderer,
{
keyed::Column::with_children(children)
}