From ba14118f13051ea747c4972ab799f36500109481 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 9 Aug 2015 20:13:22 -0400 Subject: [PATCH] Fix focus follows mouse --- sway/handlers.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sway/handlers.c b/sway/handlers.c index 70d044b6f..7d45452f8 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -103,6 +103,7 @@ bool handle_pointer_motion(wlc_handle view, uint32_t time, const struct wlc_orig swayc_t *focused = get_focused_container(&root_container); if (c && c != focused) { sway_log(L_DEBUG, "Switching focus to %p", c); + unfocus_all(&root_container); focus_view(c); } return true; @@ -115,6 +116,7 @@ bool handle_pointer_button(wlc_handle view, uint32_t time, const struct wlc_modi swayc_t *focused = get_focused_container(&root_container); if (c && c != focused) { sway_log(L_DEBUG, "Switching focus to %p", c); + unfocus_all(&root_container); focus_view(c); return false; }