summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2016-03-03 14:54:50 -0500
committerMike Blumenkrantz <zmike@osg.samsung.com>2016-03-04 13:08:09 -0500
commitd4996e2db38ddaff1d01707b5a881b149e9ff9e7 (patch)
tree1005ce47d4679d211d31f54c3583236de3da7443
parented7a0246f907b456458dc6c4e9809caf59eb0958 (diff)
downloadenlightenment-d4996e2db38ddaff1d01707b5a881b149e9ff9e7.tar.gz
trigger mouse binding end callbacks on mouse up
broken by copy/paste errors last month ref fe5d2e6e61747e27292339b01c8b5f9193ecad62
-rw-r--r--src/bin/e_bindings.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/e_bindings.c b/src/bin/e_bindings.c
index eceb12c232..c47101bc3a 100644
--- a/src/bin/e_bindings.c
+++ b/src/bin/e_bindings.c
@@ -507,13 +507,13 @@ e_bindings_mouse_up_event_handle(E_Binding_Context ctxt, E_Object *obj, E_Bindin
{
act = e_bindings_mouse_button_find(ctxt, ev, &binding);
if (!act) break;
- if (act->func.go_mouse)
+ if (act->func.end_mouse)
{
- if (!act->func.go_mouse(obj, binding->params, ev))
+ if (!act->func.end_mouse(obj, binding->params, ev))
continue;
}
- else if (act->func.go)
- act->func.go(obj, binding->params);
+ else if (act->func.end)
+ act->func.end(obj, binding->params);
break;
}
return act;