From: Reginald Kennedy Date: Tue, 25 Feb 2014 05:26:53 +0000 (+0800) Subject: Ignore EnterNotify when entering from an inferior window. X-Git-Url: https://jasonwoof.com/gitweb/?p=spectrwm.git;a=commitdiff_plain;h=870f90b273b2fbe1aed69a3125c1ae361d6988e6 Ignore EnterNotify when entering from an inferior window. Fixes #28 --- diff --git a/spectrwm.c b/spectrwm.c index ea33255..6a8687f 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -9429,6 +9429,13 @@ enternotify(xcb_enter_notify_event_t *e) return; } } else { + if (e->mode == XCB_NOTIFY_MODE_NORMAL && + e->detail == XCB_NOTIFY_DETAIL_INFERIOR) { + DNPRINTF(SWM_D_EVENT, "enternotify: entering from " + "inferior; ignoring\n"); + return; + } + focus_win(get_focus_magic(win)); }