entry: Fix elm_entry_end_visible_set checked wrong content.

the elm_entry_end_visible_set checked elm.swallow.icon.
It should checked elm.swallow.end.
This commit is contained in:
Youngbok Shin 2013-07-09 16:57:16 +09:00 committed by WooHyun Jung
parent a4ad57f627
commit c17f88ace3
1 changed files with 1 additions and 1 deletions

View File

@ -4881,7 +4881,7 @@ _end_visible_set(Eo *obj, void *_pd EINA_UNUSED, va_list *list)
{
Eina_Bool setting = va_arg(*list, int);
if (!elm_layout_content_get(obj, "elm.swallow.icon")) return;
if (!elm_layout_content_get(obj, "elm.swallow.end")) return;
if (setting)
elm_layout_signal_emit(obj, "elm,action,show,end", "elm");