commit a1f55d31016b985f0df4d770552083c387245fdd
parent 4560672d3ba83fe38db757d2ebc4cd1437673ae7
Author: Bastien Dejean <nihilhill@gmail.com>
Date: Thu, 17 Oct 2013 10:53:19 +0200
Log all mapping notify events
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sxhkd.c b/sxhkd.c
@@ -243,9 +243,9 @@ void mapping_notify(xcb_generic_event_t *evt)
if (ignore_mapping || !running || chained)
return;
xcb_mapping_notify_event_t *e = (xcb_mapping_notify_event_t *) evt;
+ PRINTF("mapping notify %u %u\n", e->request, e->count);
if (e->request == XCB_MAPPING_POINTER)
return;
- PRINTF("mapping notify %u %u\n", e->request, e->count);
if (xcb_refresh_keyboard_mapping(symbols, e) == 1) {
destroy_chord(escape_chord);
get_lock_fields();