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:

committed by
Sven Neumann

parent
7a8abc28b3
commit
d4ac3ad00e
@ -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>
|
||||
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user