libgimpwidgets: set a minimum width on GimpColorProfileComboBox

so ellipsation doesn't shrink the entire text away in narrow dialogs.
This commit is contained in:
Michael Natterer 2016-05-22 18:44:59 +02:00
parent 836972b736
commit adaa67548e
1 changed files with 2 additions and 1 deletions

View File

@ -139,6 +139,7 @@ gimp_color_profile_combo_box_init (GimpColorProfileComboBox *combo_box)
GtkCellRenderer *cell = gtk_cell_renderer_text_new ();
g_object_set (cell,
"width-chars", 42,
"ellipsize", PANGO_ELLIPSIZE_END,
NULL);