removed the entry's inner border to save some precious space in the

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

	* app/display/gimpscalecombobox.c (gimp_scale_combo_box_init):
	removed the entry's inner border to save some precious space in
	the status-bar.


svn path=/trunk/; revision=25588
This commit is contained in:
Sven Neumann
2008-05-08 12:47:21 +00:00
committed by Sven Neumann
parent 7a8abc28b3
commit d4ac3ad00e
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-05-08 Sven Neumann <sven@gimp.org>
* app/display/gimpscalecombobox.c (gimp_scale_combo_box_init):
removed the entry's inner border to save some precious space in
the status-bar.
2008-05-08 Sven Neumann <sven@gimp.org>
* app/display/gimpdisplayshell-callbacks.c
@ -5,7 +11,7 @@
button-press events.
* app/widgets/gimpwindow.c (gimp_window_key_press_event): removed
a G_UNLIKELY() statement that is somewhat bogus here.
use of G_UNLIKELY() that was somewhat bogus here.
2008-05-08 Sven Neumann <sven@gimp.org>

View File

@ -117,6 +117,7 @@ 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;
@ -138,6 +139,7 @@ gimp_scale_combo_box_init (GimpScaleComboBox *combo_box)
"xalign", 1.0,
"width-chars", 7,
"truncate-multiline", TRUE,
"inner-border", &border,
NULL);
layout = GTK_CELL_LAYOUT (combo_box);