From 86c8eba61908c570031f09fcd3b65ba2f9bda1d8 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Thu, 29 May 2008 13:20:05 +0000 Subject: [PATCH] unset the entry's frame instead of reducing the inner border. 2008-05-29 Sven Neumann * app/display/gimpscalecombobox.c (gimp_scale_combo_box_init): unset the entry's frame instead of reducing the inner border. svn path=/trunk/; revision=25858 --- ChangeLog | 5 +++++ app/display/gimpscalecombobox.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7deb8a78ac..8695357e89 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-05-29 Sven Neumann + + * app/display/gimpscalecombobox.c (gimp_scale_combo_box_init): + unset the entry's frame instead of reducing the inner border. + 2008-05-29 Sven Neumann * themes/Default/images/Makefile.am (STOCK_TOOL_IMAGES): diff --git a/app/display/gimpscalecombobox.c b/app/display/gimpscalecombobox.c index ed3cec0e47..20b20cf917 100644 --- a/app/display/gimpscalecombobox.c +++ b/app/display/gimpscalecombobox.c @@ -117,7 +117,6 @@ gimp_scale_combo_box_init (GimpScaleComboBox *combo_box) GtkCellLayout *layout; GtkCellRenderer *cell; GtkTreeIter iter; - GtkBorder border = { 0, 0, 0, 0 }; gint i; combo_box->scale = 1.0; @@ -139,7 +138,7 @@ gimp_scale_combo_box_init (GimpScaleComboBox *combo_box) "xalign", 1.0, "width-chars", 7, "truncate-multiline", TRUE, - "inner-border", &border, + "has-frame", FALSE, NULL); layout = GTK_CELL_LAYOUT (combo_box);