diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-07-27 15:45:37 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-07-27 15:53:43 +0900 |
commit | 936ea58cb9ac3e93aaabb6ec731fc3845cf95826 (patch) | |
tree | 18aaeb878b5fc1e3562c3523e29f1f4bdab09c9f | |
parent | f2b6a67115a074c670bfed414d99664ab4e8475c (diff) | |
download | efl-936ea58cb9ac3e93aaabb6ec731fc3845cf95826.tar.gz |
evas: Always call show/hide intercept
Ref T5370
-rw-r--r-- | src/lib/evas/canvas/evas_object_intercept.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/lib/evas/canvas/evas_object_intercept.c b/src/lib/evas/canvas/evas_object_intercept.c index e627daab97..9ce9d0b5a2 100644 --- a/src/lib/evas/canvas/evas_object_intercept.c +++ b/src/lib/evas/canvas/evas_object_intercept.c @@ -100,10 +100,13 @@ _evas_object_intercept_call_internal(Evas_Object *eo_obj, { case EVAS_OBJECT_INTERCEPT_CB_VISIBLE: i = !!va_arg(args, int); - if (i == obj->cur->visible) return 1; - if (!obj->interceptors) return 0; - if (i) blocked = evas_object_intercept_call_show(eo_obj, obj); - else blocked = evas_object_intercept_call_hide(eo_obj, obj); + if (obj->interceptors) + { + if (i) blocked = evas_object_intercept_call_show(eo_obj, obj); + else blocked = evas_object_intercept_call_hide(eo_obj, obj); + } + if (!blocked && (i == obj->cur->visible)) + blocked = 1; break; case EVAS_OBJECT_INTERCEPT_CB_MOVE: |