From: Igor Olshevskyi Date: Wed, 28 Sep 2016 08:00:05 +0000 (+0300) Subject: TizenRefApp-7329 [Call UI] Fix transparent background problem on popups with genlist X-Git-Tag: submit/tizen/20161005.160256~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=974a2a75a0b6fef98692a8401f60dfe1a908a43f;p=profile%2Fmobile%2Fapps%2Fnative%2Fcall-ui.git TizenRefApp-7329 [Call UI] Fix transparent background problem on popups with genlist Change-Id: I4343d81e524a3b2fff0a0ed834ff4ad409eda191 --- diff --git a/src/callui-view-callend.c b/src/callui-view-callend.c index d11c49c..0c7ac4a 100644 --- a/src/callui-view-callend.c +++ b/src/callui-view-callend.c @@ -574,6 +574,8 @@ static void __add_contact_click_cb(void *data, Evas_Object *obj, const char *emi CALLUI_RETURN_IF_FAIL(parent); vd->create_update_popup = elm_popup_add(parent); + CALLUI_RETURN_IF_FAIL(vd->create_update_popup); + elm_object_style_set(vd->create_update_popup, "theme_bg"); eext_object_event_callback_add(vd->create_update_popup, EEXT_CALLBACK_BACK, __popup_back_click_cb, vd); elm_popup_align_set(vd->create_update_popup, ELM_NOTIFY_ALIGN_FILL, 1.0); diff --git a/src/callui-view-elements.c b/src/callui-view-elements.c index d377c9f..63a0f0d 100755 --- a/src/callui-view-elements.c +++ b/src/callui-view-elements.c @@ -540,6 +540,7 @@ void _callui_load_second_call_popup(callui_app_data_t *ad) ad->second_call_popup = elm_popup_add(_callui_window_get_eo(ad->window)); CALLUI_RETURN_IF_FAIL(ad->second_call_popup); + elm_object_style_set(ad->second_call_popup, "theme_bg"); elm_popup_align_set(ad->second_call_popup, ELM_NOTIFY_ALIGN_FILL, 1.0); elm_object_translatable_part_text_set(ad->second_call_popup, "title,text", "IDS_CALL_HEADER_ANSWER_CALL_ABB"); evas_object_size_hint_weight_set(ad->second_call_popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);