From 54100c785f599a8b39e193ee42906bd79244b314 Mon Sep 17 00:00:00 2001 From: taehyub Date: Tue, 23 Feb 2016 20:44:24 +0900 Subject: [PATCH] fix the wrong operation of mirrored set Summary: fix the wrong operation of mirrored set. when mirrored set is applied, notify change the theme using mirrored flag. however, it is unnecessary operation. @fix Reviewers: Hermet, kimcinoo Reviewed By: kimcinoo Differential Revision: https://phab.enlightenment.org/D3700 Change-Id: I8d8815e8e162c7b3cedd3833e31ad1c8d9bfc42b --- src/lib/elm_notify.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/elm_notify.c b/src/lib/elm_notify.c index e97fd6d..9aabadb 100644 --- a/src/lib/elm_notify.c +++ b/src/lib/elm_notify.c @@ -26,7 +26,6 @@ _notify_theme_apply(Evas_Object *obj) ax = sd->horizontal_align; ay = sd->vertical_align; - if ((elm_widget_mirrored_get(obj)) && (ax != ELM_NOTIFY_ALIGN_FILL)) ax = 1.0 - ax; if (ay == 0.0) { -- 2.7.4