This seems UI FW bug, however it can be solved on application side.
Having FILL in popup alignment currently is causing the popup internals
to be display out-of-bounds of container popup.
Setting align to 0.5 fix this bug and popup is displayed well.
Change-Id: I157b05745510204c303707e87b6d026b70788f14
SETTING_TRACE_BEGIN;
Evas_Object *popup = elm_popup_add(parent);
- elm_popup_align_set(popup, ELM_NOTIFY_ALIGN_FILL, 1.0);
+ elm_popup_align_set(popup, 0.5, 1.0);
evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND);