From 482195d7888696527557cc6af6ab3ecb4bd4ba5b Mon Sep 17 00:00:00 2001 From: Jon McCann Date: Wed, 21 Mar 2012 15:54:45 -0400 Subject: [PATCH] Ensure skipped row between sections has a nonzero height https://bugzilla.gnome.org/show_bug.cgi?id=672587 --- gtk/gtkaboutdialog.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk/gtkaboutdialog.c b/gtk/gtkaboutdialog.c index 67945b675d..db00487a8e 100644 --- a/gtk/gtkaboutdialog.c +++ b/gtk/gtkaboutdialog.c @@ -2361,6 +2361,8 @@ add_credits_section (GtkAboutDialog *about, } /* skip one at the end */ + label = gtk_label_new (""); + gtk_grid_attach (grid, label, 1, *row, 1, 1); (*row)++; }