elc_popup: atspi - make popup label accessible

The application could customize default behavior of popup label.
There was no way to get the popup label so far.
This commit is contained in:
Shinwoo Kim 2017-06-28 09:24:16 +09:00
parent 077791b7cc
commit 921c692f86
1 changed files with 5 additions and 1 deletions

View File

@ -1267,7 +1267,11 @@ _title_icon_get(const Elm_Popup_Data *sd)
static Evas_Object *
_content_get(const Elm_Popup_Data *sd)
{
return sd->content;
Evas_Object *ret;
ret = sd->content ? sd->content : sd->text_content_obj;
return ret;
}
static Evas_Object *