summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYeshwanth Reddivari <r.yeshwanth@samsung.com>2015-11-02 19:29:57 +0530
committerAmitesh Singh <amitesh.sh@samsung.com>2015-11-02 19:29:57 +0530
commit9115c17b70a311d6799c14dd5793bc1c4a89c8c5 (patch)
treec1214830b1bc36cb6bb2833aed3e9d96a8f65d05
parent63131ef30e237567adbb84d627f2f6de48613482 (diff)
downloadelementary-9115c17b70a311d6799c14dd5793bc1c4a89c8c5.tar.gz
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
-rw-r--r--src/lib/elc_hoversel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elc_hoversel.c b/src/lib/elc_hoversel.c
index bcf31591f..11e943659 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));
}
}