Bug fix: Thumbnail not shown unless filename text shown
authorColin Clark <colin.clark@cclark.uk>
Wed, 7 Sep 2022 10:53:10 +0000 (11:53 +0100)
committerColin Clark <colin.clark@cclark.uk>
Wed, 7 Sep 2022 10:53:10 +0000 (11:53 +0100)
src/cellrenderericon.c

index d38ae6e..a87d74e 100644 (file)
@@ -646,7 +646,7 @@ static void gqv_cell_renderer_icon_render(GtkCellRenderer *cell,
 
        pixbuf = cellicon->pixbuf;
        text = cellicon->text;
-       if (!text)
+       if (!pixbuf && !text)
                {
                return;
                }