Elm entry: fix call to set text via entry_set

Accidentally called the super here, so did not get routed to
'_elm_entry_text_set'.

Fixes T5803.
This commit is contained in:
Daniel Hirt 2017-07-28 12:33:55 +03:00
parent fd65e0f56a
commit 2efa25511f
1 changed files with 1 additions and 1 deletions

View File

@ -4177,7 +4177,7 @@ elm_entry_entry_set(Evas_Object *obj,
const char *entry)
{
ELM_ENTRY_CHECK(obj);
efl_text_set(efl_part(efl_super(obj, MY_CLASS), "elm.text"), entry);
efl_text_set(efl_part(obj, "elm.text"), entry);
}
EAPI const char *