]> Pileus Git - ~andy/gtk/commitdiff
Ensure skipped row between sections has a nonzero height
authorJon McCann <jmccann@redhat.com>
Wed, 21 Mar 2012 19:54:45 +0000 (15:54 -0400)
committerJon McCann <jmccann@redhat.com>
Thu, 22 Mar 2012 17:07:35 +0000 (13:07 -0400)
https://bugzilla.gnome.org/show_bug.cgi?id=672587

gtk/gtkaboutdialog.c

index 67945b675d5d4e9ea5759ff0fd53b6d9e6151298..db00487a8ebcefd9042985cd1c5928943dcee34d 100644 (file)
@@ -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)++;
 }