elm_gesture_layer: Use flag returned by gesture callbacks

Summary:
Instead of flag returned by gesture callbacks, always EVAS_EVENT_FLAG_NONE
flag was being used.

Test Plan:
As event flag was not being appropriately updated, in some cases expected
behaviour was not seen.

Reviewers: shilpasingh, cedric, Hermet, segfaultxavi

Reviewed By: shilpasingh, segfaultxavi

Subscribers: segfaultxavi, #reviewers, rajeev.jnnce, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8421
This commit is contained in:
Prasoon Singh 2019-03-21 10:07:43 +01:00 committed by Xavi Artigas
parent 5930c5f86e
commit e0511c995f
1 changed files with 1 additions and 1 deletions

View File

@ -619,7 +619,7 @@ _state_report(Gesture_Info *gesture,
flags |= cb_info->cb(cb_info->user_data, info);
}
return EVAS_EVENT_FLAG_NONE;
return flags;
}
/**