mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-06 21:20:39 +00:00
sticky: prioritise non-sticky windows on focus(NULL) ref. #387
This commit is contained in:
parent
4a22fd046c
commit
63bab1aa8a
4
dwm.c
4
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)
|
||||
|
Loading…
Reference in New Issue
Block a user