elementary/elc_popup : Popup should get focus when elm_object_focus_set is tried on it even though there is no focusalbe child in it.

This commit is contained in:
WooHyun Jung 2013-05-31 16:22:28 +09:00
parent 94894ad8ec
commit 9cd0a65523
1 changed files with 2 additions and 2 deletions

View File

@ -1357,8 +1357,8 @@ _elm_popup_smart_focus_next(Eo *obj EINA_UNUSED, void *_pd, va_list *list)
/* action area */
if (sd->action_area) items = eina_list_append(items, sd->action_area);
elm_widget_focus_list_next_get
(obj, items, eina_list_data_get, dir, next);
if (!elm_widget_focus_list_next_get(obj, items, eina_list_data_get, dir, next))
*next = obj;
return;
}