evas clip: more strict comparison.

Summary: just improvement from D6645

Reviewers: zmike, #committers

Reviewed By: zmike, #committers

Subscribers: cedric, #committers, zmike

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6650
This commit is contained in:
Hermet Park 2018-07-23 08:18:00 -04:00 committed by Mike Blumenkrantz
parent 62a09f69a1
commit 2ea7bc5a81
1 changed files with 6 additions and 4 deletions

View File

@ -394,8 +394,9 @@ _efl_canvas_object_clip_set(Eo *eo_obj, Evas_Object_Protected_Data *obj, Evas_Ob
evas_object_update_bounding_box(eo_obj, obj, NULL);
evas_object_clip_dirty(eo_obj, obj);
evas_object_recalc_clippees(obj);
if (obj->cur->visible && (!obj->is_smart) &&
(!((obj->map->cur.map) && (obj->map->cur.usemap))))
if ((!obj->is_smart) &&
(!((obj->map->cur.map) && (obj->map->cur.usemap))) &&
evas_object_is_visible(eo_obj, obj))
{
_evas_canvas_event_pointer_in_rect_mouse_move_feed(obj->layer->evas,
eo_obj,
@ -443,8 +444,9 @@ _clip_unset(Eo *eo_obj, Evas_Object_Protected_Data *obj)
evas_object_clip_dirty(eo_obj, obj);
evas_object_recalc_clippees(obj);
if (obj->cur->visible && (!obj->is_smart) &&
(!((obj->map->cur.map) && (obj->map->cur.usemap))))
if ((!obj->is_smart) &&
(!((obj->map->cur.map) && (obj->map->cur.usemap))) &&
evas_object_is_visible(eo_obj, obj))
{
_evas_canvas_event_pointer_in_rect_mouse_move_feed(obj->layer->evas,
eo_obj,