diff --git a/dwm.c b/dwm.c index 7497c65..0ffc759 100644 --- a/dwm.c +++ b/dwm.c @@ -2046,6 +2046,10 @@ focus(Client *c) if (!c || !ISVISIBLE(c)) c = getpointerclient(); #endif // FOCUSFOLLOWMOUSE_PATCH + #if STICKY_PATCH + if (!c || !ISVISIBLE(c)) + for (c = selmon->stack; c && !ISVISIBLE(c) && !c->issticky; c = c->snext); + #endif // STICKY_PATCH if (!c || !ISVISIBLE(c)) for (c = selmon->stack; c && !ISVISIBLE(c); c = c->snext); if (selmon->sel && selmon->sel != c)