From aafc2368cd0e72b69984c356454df891f167fc59 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Sat, 29 Nov 2014 12:52:26 +0100 Subject: [PATCH] libgimpwidgets: make GimpColorSelection's main_hbox expand vertically so the color dialogs become properly resizable again. This must have been broken for ages. --- libgimpwidgets/gimpcolorselection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgimpwidgets/gimpcolorselection.c b/libgimpwidgets/gimpcolorselection.c index ada9ce27b8..cd483b509b 100644 --- a/libgimpwidgets/gimpcolorselection.c +++ b/libgimpwidgets/gimpcolorselection.c @@ -171,7 +171,7 @@ gimp_color_selection_init (GimpColorSelection *selection) selection->channel = GIMP_COLOR_SELECTOR_HUE; main_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_container_add (GTK_CONTAINER (selection), main_hbox); + gtk_box_pack_start (GTK_BOX (selection), main_hbox, TRUE, TRUE, 0); gtk_widget_show (main_hbox); /* The left vbox with the notebook */