Upgrading to 67d76b and removing alwaysfullscreen patch as it has been merged into mainstream dwm 6.2

This commit is contained in:
bakkeby
2021-03-29 19:33:05 +02:00
parent 72564eb394
commit 012d1f7639
4 changed files with 11 additions and 14 deletions

7
dwm.c
View File

@@ -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);