diff --git a/src/ui/components/media_grid/film_grid.rs b/src/ui/components/media_grid/film_grid.rs index de8d08b..0d79ccb 100644 --- a/src/ui/components/media_grid/film_grid.rs +++ b/src/ui/components/media_grid/film_grid.rs @@ -40,6 +40,9 @@ impl Component for FilmGrid { set_propagate_natural_height: true, #[name="grid"] + // TODO: Replace this with a GridView. + // Once this is done we can replace the factory with a TypedGridView for better performance + // (i.e. lazy item rendering) if needed. This should also enable less cursed sorting. FlowBox { set_orientation: Orientation::Horizontal, set_homogeneous: true, diff --git a/src/ui/components/media_grid/series_grid.rs b/src/ui/components/media_grid/series_grid.rs index 6401ecc..7dcfb61 100644 --- a/src/ui/components/media_grid/series_grid.rs +++ b/src/ui/components/media_grid/series_grid.rs @@ -40,6 +40,9 @@ impl Component for SeriesGrid { set_propagate_natural_height: true, #[name="grid"] + // TODO: Replace this with a GridView. + // Once this is done we can replace the factory with a TypedGridView for better performance + // (i.e. lazy item rendering) if needed. This should also enable less cursed sorting. FlowBox { set_orientation: Orientation::Horizontal, set_homogeneous: true,