char buf[1024];
snprintf(buf, sizeof(buf), sd->units, sd->val);
+ /// TIZEN_ONLY(20170724): changed negative zero to zero
+ if (!strcmp(buf, "-0")) snprintf(buf, sizeof(buf), "0");
+ //
elm_layout_text_set(obj, "elm.units", buf);
if (!sd->units_show)
{
char buf[1024];
snprintf(buf, sizeof(buf), sd->indicator, sd->val);
+ /// TIZEN_ONLY(20170724): changed negative zero to zero
+ if (!strcmp(buf, "-0")) snprintf(buf, sizeof(buf), "0");
+ //
elm_layout_text_set(obj, "elm.indicator", buf);
elm_layout_text_set(obj, "elm.dragable.slider:elm.indicator", buf);
if (sd->popup)