summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/node.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/node.c b/src/core/node.c
index 49033c0..704d7e5 100644
--- a/src/core/node.c
+++ b/src/core/node.c
@@ -2489,6 +2489,14 @@ cleanup:
}
free(targets);
+ if (dei->actions != NULL) {
+ dom_default_action_callback cb = dei->actions(evt->type,
+ DOM_DEFAULT_ACTION_FINISHED, &pw);
+ if (cb != NULL) {
+ cb(evt, pw);
+ }
+ }
+
return ret;
}