From be8bc711b2dd61e3171058135e18d1baa39be640 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Wed, 2 Aug 2006 04:45:52 +0000 Subject: [PATCH] make the Unfocus action do something when config_focus_follow is set --- openbox/focus.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openbox/focus.c b/openbox/focus.c index 4f598ec5..07df3a56 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -290,7 +290,9 @@ ObClient* focus_fallback_target(ObFocusFallbackType type) } } - if (config_focus_follow && !config_focus_last) { + if (config_focus_follow && + (type == OB_FOCUS_FALLBACK_UNFOCUSING || !config_focus_last)) + { if ((target = client_under_pointer())) if (client_normal(target) && client_can_focus(target)) return target; -- 2.39.2