Merge branch 'gridview-filler-tile-fix' into 'main'
gridview: Fix condition for adding filler tiles See merge request GNOME/gtk!5664
This commit is contained in:
@@ -820,7 +820,7 @@ gtk_grid_view_size_allocate (GtkWidget *widget,
|
||||
}
|
||||
}
|
||||
/* Add a filler tile for empty space in the bottom right */
|
||||
if (i < self->n_columns)
|
||||
if (i > 0)
|
||||
{
|
||||
GtkListTile *filler;
|
||||
tile = gtk_list_item_manager_get_last (self->item_manager);
|
||||
|
||||
Reference in New Issue
Block a user