From 73a6ddf7b5e9f8b13e67d074df0d264089a3ce54 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Fri, 5 Nov 2010 16:28:54 +0100 Subject: [PATCH] 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. --- libgimpwidgets/gimpunitcombobox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libgimpwidgets/gimpunitcombobox.c b/libgimpwidgets/gimpunitcombobox.c index af9acbf137..ac945d2f6b 100644 --- a/libgimpwidgets/gimpunitcombobox.c +++ b/libgimpwidgets/gimpunitcombobox.c @@ -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); }