summaryrefslogtreecommitdiffhomepage
path: root/patch
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2021-03-29 19:33:05 +0200
committerbakkeby <[email protected]>2021-03-29 19:33:05 +0200
commit012d1f76392968584fe9e2c1b4b385a341d51883 (patch)
treeeabd036903ed00a2941ecf7fba228254f5957ad1 /patch
parent72564eb39478c52745b6f8927de516dd2af52b97 (diff)
downloaddwm-flexipatch-012d1f76392968584fe9e2c1b4b385a341d51883.tar.gz
dwm-flexipatch-012d1f76392968584fe9e2c1b4b385a341d51883.zip
Upgrading to 67d76b and removing alwaysfullscreen patch as it has been merged into mainstream dwm 6.2
Diffstat (limited to 'patch')
-rw-r--r--patch/stacker.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/patch/stacker.c b/patch/stacker.c
index 1582cf6..2b28319 100644
--- a/patch/stacker.c
+++ b/patch/stacker.c
@@ -7,10 +7,10 @@ focusstack(const Arg *arg)
if (i < 0)
return;
- #if ALWAYSFULLSCREEN_PATCH
+ #if !LOSEFULLSCREEN_PATCH
if (!selmon->sel || selmon->sel->isfullscreen)
return;
- #endif // ALWAYSFULLSCREEN_PATCH
+ #endif // LOSEFULLSCREEN_PATCH
#if BAR_WINTITLEACTIONS_PATCH
for (p = NULL, c = selmon->clients; c && (i || !ISVISIBLE(c) || HIDDEN(c));