libgimpwidgets: use the short and long format strings for the unit combo

where the short one gets used for the combo itself, and the long one
for the popup.
This commit is contained in:
Michael Natterer 2010-11-05 16:28:54 +01:00
parent e821cd4881
commit 73a6ddf7b5
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ gimp_unit_combo_box_init (GimpUnitComboBox *combo)
cell = gtk_cell_renderer_text_new ();
gtk_cell_layout_pack_start (layout, cell, TRUE);
gtk_cell_layout_set_attributes (layout, cell,
"text", GIMP_UNIT_STORE_UNIT_PLURAL,
"text", GIMP_UNIT_STORE_UNIT_LONG_FORMAT,
NULL);
}
@ -88,7 +88,7 @@ gimp_unit_combo_box_style_set (GtkWidget *widget,
NULL);
gtk_cell_layout_pack_start (layout, cell, TRUE);
gtk_cell_layout_set_attributes (layout, cell,
"text", GIMP_UNIT_STORE_UNIT_ABBREVIATION,
"text", GIMP_UNIT_STORE_UNIT_SHORT_FORMAT,
NULL);
}