From 9115c17b70a311d6799c14dd5793bc1c4a89c8c5 Mon Sep 17 00:00:00 2001 From: Yeshwanth Reddivari Date: Mon, 2 Nov 2015 19:29:57 +0530 Subject: [PATCH] Hoversel: Fix dismiss callback Summary: Dismiss callback was getting called on hover object instead of hoversel object. Reviewers: raster, Hermet, alok25, mvsovani, conr2d, singh.amitesh Reviewed By: singh.amitesh Subscribers: sachin.dev Differential Revision: https://phab.enlightenment.org/D3261 --- src/lib/elc_hoversel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elc_hoversel.c b/src/lib/elc_hoversel.c index bcf3159..11e9436 100644 --- a/src/lib/elc_hoversel.c +++ b/src/lib/elc_hoversel.c @@ -352,7 +352,7 @@ _hover_end_finished(void *data, sd->scr = NULL; sd->last_location = NULL; - eo_do(obj, eo_event_callback_call(ELM_HOVERSEL_EVENT_DISMISSED, NULL)); + eo_do(data, eo_event_callback_call(ELM_HOVERSEL_EVENT_DISMISSED, NULL)); } } -- 2.7.4