efl ui progressbar - no space between value and percent in default fmt

do you write 20 % or 20% ? :) no space by default. fix.
This commit is contained in:
Carsten Haitzler 2018-02-10 14:40:54 +09:00
parent dc8da37878
commit 1d5de2e58e
1 changed files with 2 additions and 2 deletions

View File

@ -378,7 +378,7 @@ _efl_ui_progressbar_efl_canvas_group_group_add(Eo *obj, Efl_Ui_Progressbar_Data
free(group);
efl_ui_format_string_set(obj, "%.0f %%");
efl_ui_format_string_set(obj, "%.0f%%");
priv->spacer = evas_object_rectangle_add(evas_object_evas_get(obj));
evas_object_color_set(priv->spacer, 0, 0, 0, 0);
@ -766,7 +766,7 @@ elm_progressbar_add(Evas_Object *parent)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(parent, NULL);
Eo *obj = elm_legacy_add(EFL_UI_PROGRESSBAR_LEGACY_CLASS, parent);
elm_progressbar_unit_format_set(obj, "%.0f %%");
elm_progressbar_unit_format_set(obj, "%.0f%%");
return obj;
}