libgimpwidgets: make GimpColorSelection's main_hbox expand vertically

so the color dialogs become properly resizable again. This must have
been broken for ages.
This commit is contained in:
Michael Natterer 2014-11-29 12:52:26 +01:00
parent 293e5bde9e
commit aafc2368cd
1 changed files with 1 additions and 1 deletions

View File

@ -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 */