[gimp] app: don't expand the convolution matrix table widget



commit 6853c9126457b7d15c07d02bb0e18959181e30d7
Author: Ell <ell_se yahoo com>
Date:   Sun Feb 5 22:18:32 2017 -0500

    app: don't expand the convolution matrix table widget
    
    Accidently introduced by the previous commits.

 app/widgets/gimppropgui-constructors.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/app/widgets/gimppropgui-constructors.c b/app/widgets/gimppropgui-constructors.c
index 6df5468..6f30102 100644
--- a/app/widgets/gimppropgui-constructors.c
+++ b/app/widgets/gimppropgui-constructors.c
@@ -579,7 +579,7 @@ _gimp_prop_gui_new_convolution_matrix (GObject              *config,
   main_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 8);
 
   vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
-  gtk_box_pack_start (GTK_BOX (main_vbox), vbox, TRUE, TRUE, 0);
+  gtk_box_pack_start (GTK_BOX (main_vbox), vbox, FALSE, FALSE, 0);
   gtk_widget_show (vbox);
 
   /* matrix */
@@ -587,7 +587,7 @@ _gimp_prop_gui_new_convolution_matrix (GObject              *config,
   table = gtk_table_new (5, 5, TRUE);
   gtk_table_set_row_spacings (GTK_TABLE (table), 2);
   gtk_table_set_col_spacings (GTK_TABLE (table), 4);
-  gtk_box_pack_start (GTK_BOX (vbox), table, TRUE, TRUE, 0);
+  gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
   gtk_widget_show (table);
 
   for (y = 0; y < 5; y++)
@@ -618,7 +618,7 @@ _gimp_prop_gui_new_convolution_matrix (GObject              *config,
       gint         flip;
     } ButtonInfo;
 
-    gint       i;
+    gint             i;
     const ButtonInfo buttons[] = {
       {
         .tooltip   = _("Rotate matrix 90° counter-clockwise"),


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]