Upgrading to 67d76b and removing alwaysfullscreen patch as it has been merged into mainstream dwm 6.2
This commit is contained in:
7
dwm.c
7
dwm.c
@@ -1952,12 +1952,13 @@ focusstack(const Arg *arg)
|
||||
{
|
||||
Client *c = NULL, *i;
|
||||
|
||||
#if LOSEFULLSCREEN_PATCH
|
||||
if (!selmon->sel)
|
||||
return;
|
||||
#if ALWAYSFULLSCREEN_PATCH
|
||||
if (selmon->sel->isfullscreen)
|
||||
#else
|
||||
if (!selmon->sel || selmon->sel->isfullscreen)
|
||||
return;
|
||||
#endif // ALWAYSFULLSCREEN_PATCH
|
||||
#endif // LOSEFULLSCREEN_PATCH
|
||||
#if BAR_WINTITLEACTIONS_PATCH
|
||||
if (arg->i > 0) {
|
||||
for (c = selmon->sel->next; c && (!ISVISIBLE(c) || (arg->i == 1 && HIDDEN(c))); c = c->next);
|
||||
|
Reference in New Issue
Block a user