From 0520ca3bdff9a8fc16c3a4110a28052051b4602e Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 20 Dec 2015 17:03:06 -0500 Subject: [PATCH] buttonbox: Fix size request A copy-paste mistake was making us always request too little space, causing the buttons to be jumbled or cut off. https://bugzilla.gnome.org/show_bug.cgi?id=759664 --- gtk/gtkbbox.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gtk/gtkbbox.c b/gtk/gtkbbox.c index fd2a6541bd..ab672377d7 100644 --- a/gtk/gtkbbox.c +++ b/gtk/gtkbbox.c @@ -911,7 +911,6 @@ gtk_button_box_measure (GtkCssGadget *gadget, else *minimum = *natural = requisition.height; - *minimum = *natural = requisition.height; if (minimum_baseline) *minimum_baseline = baseline; if (natural_baseline)