Initial fix for sticky switching
This commit is contained in:
parent
80109dbd85
commit
125a12548f
1 changed files with 1 additions and 1 deletions
2
dwm.c
2
dwm.c
|
@ -952,7 +952,7 @@ void
|
|||
focus(Client *c)
|
||||
{
|
||||
if (!c || !ISVISIBLE(c))
|
||||
for (c = selmon->stack; c && !ISVISIBLE(c); c = c->snext);
|
||||
for (c = selmon->stack; c && (!ISVISIBLE(c) || c->issticky); c = c->snext);
|
||||
if (selmon->sel && selmon->sel != c)
|
||||
unfocus(selmon->sel, 0);
|
||||
if (c) {
|
||||
|
|
Loading…
Reference in a new issue