From d1df8dccccedb8406bcd052b0ab1a44eebcfc929 Mon Sep 17 00:00:00 2001 From: Thomas Adam Date: Fri, 9 Jan 2026 19:00:17 +0000 Subject: [PATCH] focus-follows-mouse: honour floating panes Make sure the z-ordering of floating panes is honoured when focus-follows-mouse is in use. --- server-client.c | 1 + 1 file changed, 1 insertion(+) diff --git a/server-client.c b/server-client.c index 872515fc..ccd35c36 100644 --- a/server-client.c +++ b/server-client.c @@ -1097,6 +1097,7 @@ have_event: if (wp != NULL && wp != w->active && options_get_number(s->options, "focus-follows-mouse")) { + window_redraw_active_switch(w, wp); window_set_active_pane(w, wp, 1); server_redraw_window_borders(w); server_status_window(w);