From 6fe42e3691691b99bde3dcdebde67997b0506de1 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Sun, 16 Jun 2002 16:35:05 +0000 Subject: [PATCH] set the witdh of the gradient preview to 96 instead of 128 pixels so it is 2002-06-16 Michael Natterer * app/tools/gimpblendtool.c: set the witdh of the gradient preview to 96 instead of 128 pixels so it is not the widest tool options item with the "small" theme. --- ChangeLog | 6 ++++++ app/tools/gimpblendtool.c | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9fa7b38faf..84a98141aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-06-16 Michael Natterer + + * app/tools/gimpblendtool.c: set the witdh of the gradient preview + to 96 instead of 128 pixels so it is not the widest tool options + item with the "small" theme. + 2002-06-16 Michael Natterer * libgimpwidgets/gimpstock.[ch]: register the new "invert" and diff --git a/app/tools/gimpblendtool.c b/app/tools/gimpblendtool.c index 1473df5cbe..40e688ce42 100644 --- a/app/tools/gimpblendtool.c +++ b/app/tools/gimpblendtool.c @@ -491,7 +491,6 @@ blend_options_new (GimpToolInfo *tool_info) table = gtk_table_new (4, 3, FALSE); gtk_table_set_col_spacings (GTK_TABLE (table), 2); gtk_table_set_row_spacings (GTK_TABLE (table), 1); - gtk_table_set_row_spacing (GTK_TABLE (table), 1, 2); gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); gtk_widget_show (table); @@ -512,7 +511,7 @@ blend_options_new (GimpToolInfo *tool_info) button = gtk_button_new (); preview = gimp_preview_new_full (GIMP_VIEWABLE (gradient), - 128, 16, 0, + 96, 16, 0, FALSE, FALSE, TRUE); gtk_container_add (GTK_CONTAINER (button), preview); gtk_widget_show (preview);