summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/hotkeys/hotkeys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/hotkeys/hotkeys.c b/plugins/hotkeys/hotkeys.c
index 6da81a25..38e69e87 100644
--- a/plugins/hotkeys/hotkeys.c
+++ b/plugins/hotkeys/hotkeys.c
@@ -476,9 +476,9 @@ hotkeys_event_loop (void *unused) {
if (event.xkey.type == KeyPress)
{
int state = event.xkey.state;
- trace ("hotkeys: keypress, state=%X\n", state);
// ignore caps/scroll/numlock
state &= (ShiftMask|ControlMask|Mod1Mask|Mod4Mask);
+ trace ("hotkeys: key %d mods %X (%X)\n", event.xkey.keycode, state, event.xkey.state);
trace ("filtered state=%X\n", state);
for (i = 0; i < command_count; i++) {
if ( (event.xkey.keycode == commands[ i ].x11_keycode) &&