summaryrefslogtreecommitdiff
path: root/src/actions.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions.c')
-rw-r--r--src/actions.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/actions.c b/src/actions.c
index 5902be3..a404360 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -83,6 +83,7 @@ action_dispatch(event_t *ev, KeySym keysym) {
unsigned int m = (AltMask | MetaMask | NumLockMask);
ASSERT(ev != NULL);
+ D_ACTIONS(("Event %8p: Button %d, Keysym 0x%08x, Key State 0x%08x\n", ev, ev->xbutton.button, keysym, ev->xkey.state));
for (action = action_list; action; action = action->next) {
D_ACTIONS(("Checking action. mod == 0x%08x, button == %d, keysym == 0x%08x\n", action->mod, action->button, action->keysym));
if (ev->xany.type == ButtonPress) {