From d7f0538946c85de8595560b817ca409179d2c757 Mon Sep 17 00:00:00 2001 From: Yeongjong Lee Date: Wed, 24 Oct 2018 21:30:25 +0900 Subject: [PATCH] elm_popup: fix mistypo for proper popup size calculation in landscape mode. Change-Id: Ic086415ba6b85488f903991faaf38581c83402bd --- src/lib/elementary/elc_popup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/elc_popup.c b/src/lib/elementary/elc_popup.c index 64c78a7..f0289a5 100644 --- a/src/lib/elementary/elc_popup.c +++ b/src/lib/elementary/elc_popup.c @@ -768,7 +768,7 @@ _elm_popup_elm_layout_sizing_eval(Eo *obj, Elm_Popup_Data *sd) /* END */ /* TIZEN_ONLY(20160405): fix popup size problem in landscape mode */ - str = edje_object_data_get(elm_layout_edje_get(sd->content_area), "content_area_wdith"); + str = edje_object_data_get(elm_layout_edje_get(sd->content_area), "content_area_width"); if (str) w_content_area = (int)(atoi(str) * elm_config_scale_get() * elm_object_scale_get(obj) -- 2.7.4