{
case EVAS_OBJECT_INTERCEPT_CB_VISIBLE:
i = !!va_arg(args, int);
- 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;
+ 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);
break;
case EVAS_OBJECT_INTERCEPT_CB_MOVE: