unset the entry's frame instead of reducing the inner border.

2008-05-29  Sven Neumann  <sven@gimp.org>

	* 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
This commit is contained in:
Sven Neumann
2008-05-29 13:20:05 +00:00
committed by Sven Neumann
parent 61f67a933e
commit 86c8eba619
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-05-29 Sven Neumann <sven@gimp.org>
* 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 <sven@gimp.org>
* themes/Default/images/Makefile.am (STOCK_TOOL_IMAGES):

View File

@ -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);