okra pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=4510e474f65e5afc7431e7dae7463899bd2861b4
commit 4510e474f65e5afc7431e7dae7463899bd2861b4 Author: Stephen 'Okra' Houston <smhousto...@gmail.com> Date: Tue Feb 21 11:27:52 2017 -0600 Revert "Bryce: Don't proceed to process the mouse down event structure if it is null in the post callback." This reverts commit 25950ccfa9d8ff8c34706cf08ab02c143de88e01. Rever this commit to allow a more proper fix. --- src/bin/e_bryce.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bin/e_bryce.c b/src/bin/e_bryce.c index f5c039e..1d57fcb 100644 --- a/src/bin/e_bryce.c +++ b/src/bin/e_bryce.c @@ -573,8 +573,6 @@ _bryce_mouse_down_post(void *data, Evas *e EINA_UNUSED) Bryce *b = data; Evas_Event_Mouse_Down *ev; - if (!b->event_info) - return EINA_FALSE; ev = b->event_info; b->event_info = NULL; if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return EINA_TRUE; --