summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan-boikov <ik.boikov.public@protonmail.com>2024-08-18 18:51:46 +0200
committerivan-boikov <ik.boikov.public@protonmail.com>2024-08-18 18:51:46 +0200
commit311cce62833fe1407796543554ac56067c780736 (patch)
tree4169cd32e718d3981404257ec21b5d8135e9019d
parent6bb75df23470e46d5a81d36e81458c50f10bf2ad (diff)
Fix stacker mergepatches
-rw-r--r--patches/dwm-stacker-6.2.diff4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/dwm-stacker-6.2.diff b/patches/dwm-stacker-6.2.diff
index 8fe3b80..3ae8692 100644
--- a/patches/dwm-stacker-6.2.diff
+++ b/patches/dwm-stacker-6.2.diff
@@ -97,8 +97,8 @@ index 9fd0286..6c302c3 100644
+ int i = stackpos(arg);
+ Client *c, *p;
-- if (!selmon->sel)
-+ if(i < 0)
+- if (!selmon->sel || (selmon->sel->isfullscreen && lockfullscreen))
++ if (i < 0)
return;
- if (arg->i > 0) {
- for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);