Bug 723177 - After opening an ICC profile with a long description...

...dialogs are too wide

Ellipsize GimpColorProfileComboBox' label.
This commit is contained in:
Michael Natterer 2014-01-28 18:54:46 +01:00
parent 7fca15c27d
commit 219bf35299
1 changed files with 5 additions and 0 deletions

View File

@ -130,6 +130,11 @@ gimp_color_profile_combo_box_init (GimpColorProfileComboBox *combo_box)
{
GtkCellRenderer *cell = gtk_cell_renderer_text_new ();
g_object_set (cell,
"ellipsize", PANGO_ELLIPSIZE_END,
NULL);
gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), cell, TRUE);
gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), cell,
"text", GIMP_COLOR_PROFILE_STORE_LABEL,