summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJinYong Park <j4939.park@samsung.com>2017-09-19 16:23:43 +0900
committerJaehyun Cho <jae_hyun.cho@samsung.com>2017-11-28 17:15:42 +0900
commita7082df12b9d72880e308be4c81152de596ee028 (patch)
tree9137ac650543b61d7889ec76c645f263667078e9
parentf5010b7ba6d63cb665e8045b4e4ad1d8a85d7ad1 (diff)
downloadefl-a7082df12b9d72880e308be4c81152de596ee028.tar.gz
efl_ui_popup: remove unnecessary function call
Summary: In _calc_align function, it could get align property through Efl_Ui_Popup_Data *pd directly, but call align_get function previously. Reviewers: Jaehyun_Cho, herb, thiepha, jpeg, cedric, woohyun Reviewed By: Jaehyun_Cho Differential Revision: https://phab.enlightenment.org/D5207
-rw-r--r--src/lib/elementary/efl_ui_popup.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/elementary/efl_ui_popup.c b/src/lib/elementary/efl_ui_popup.c
index 5db1415260..2deb6a29f4 100644
--- a/src/lib/elementary/efl_ui_popup.c
+++ b/src/lib/elementary/efl_ui_popup.c
@@ -47,10 +47,7 @@ _calc_align(Evas_Object *obj)
Evas_Coord pw, ph;
evas_object_geometry_get(obj, NULL, NULL, &pw, &ph);
- Efl_Ui_Popup_Align align;
- align = efl_ui_popup_align_get(obj);
-
- switch (align)
+ switch (pd->align)
{
case EFL_UI_POPUP_ALIGN_CENTER:
efl_gfx_position_set(efl_super(obj, MY_CLASS), EINA_POSITION2D(x + ((w - pw ) / 2), y + ((h - ph) / 2)));