From: Tony Crisci Date: Fri, 31 Jul 2015 02:40:38 +0000 (-0400) Subject: Don't log motion notify X-Git-Tag: 4.11~62^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=refs%2Fpull%2F1821%2Fhead;p=i3%2Fi3 Don't log motion notify Do not log an XCB_MOTION_NOTIFY event in handlers.c because this clutters the log. Only log in the motion notify handler if something important happens. --- diff --git a/src/handlers.c b/src/handlers.c index d7d48a1c..8e08d697 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -1319,7 +1319,9 @@ static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) * */ void handle_event(int type, xcb_generic_event_t *event) { - DLOG("event type %d, xkb_base %d\n", type, xkb_base); + if (type != XCB_MOTION_NOTIFY) + DLOG("event type %d, xkb_base %d\n", type, xkb_base); + if (randr_base > -1 && type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) { handle_screen_change(event);