From 870f90b273b2fbe1aed69a3125c1ae361d6988e6 Mon Sep 17 00:00:00 2001 From: Reginald Kennedy Date: Tue, 25 Feb 2014 13:26:53 +0800 Subject: [PATCH] Ignore EnterNotify when entering from an inferior window. Fixes #28 --- spectrwm.c | 7 +++++++ 1 file changed, 7 insertions(+) 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)); } -- 1.7.10.4