From 3bc56d1a119ead792d2a8cf50b4002195d172860 Mon Sep 17 00:00:00 2001 From: Shinwoo Kim Date: Tue, 5 Sep 2017 11:13:28 +0900 Subject: [PATCH] atspi: use elm_entry to call smart callback This patch set is using elm_entry to call "anchor,clicked" smart callback. The elm_access for anchor has been used so far, so the "anchor,clicked" smart callback did not work. Change-Id: If09400e78a9fc488e307fd46e67b39bf6beeca19 --- src/lib/elm_entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index 7304942..de1bc2e 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -8123,7 +8123,7 @@ _anchor_rect_activated_cb(void *data EINA_UNUSED, Evas_Object *obj, void *event_ ei.x = ei.y = ei.w = ei.h = 0; if (!sd->disabled) - evas_object_smart_callback_call(obj, SIG_ANCHOR_CLICKED, &ei); + evas_object_smart_callback_call(entry, SIG_ANCHOR_CLICKED, &ei); } static void -- 2.7.4