edje_edit: text style should be able to set into NULL

@fix
This commit is contained in:
Vitalii Vorobiov 2016-06-07 17:56:40 +03:00
parent 8cf9ee67bd
commit a0eb98db3b
1 changed files with 1 additions and 2 deletions

View File

@ -8453,14 +8453,13 @@ edje_edit_state_text_style_set(Evas_Object *obj, const char *part, const char *s
Edje_Part_Description_Text *txt;
GET_PD_OR_RETURN(EINA_FALSE);
if (!style) return EINA_FALSE;
if ((rp->part->type != EDJE_PART_TYPE_TEXT) &&
(rp->part->type != EDJE_PART_TYPE_TEXTBLOCK))
return EINA_FALSE;
txt = (Edje_Part_Description_Text *)pd;
txt->text.style.str = eina_stringshare_add(style);
_edje_if_string_replace(ed, &txt->text.style.str, style);
edje_object_calc_force(obj);
return EINA_TRUE;