commit c53421aa5ac5c88227f1eadb073f747011813778
parent 88c0eb0e12be853451bbb515875da0f38871bf29
Author: Miles Alan <m@milesalan.com>
Date: Wed, 25 Mar 2020 17:31:33 -0500
Revert old version of dock patch
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c
@@ -1617,7 +1617,7 @@ rotatestack(const Arg *arg)
if (c) {
i = 0;
for (c = selmon->clients; c; c = c->next) {
- if (!ISVISIBLE(c) || (c->isfloating) || c->isdock) continue;
+ if (!ISVISIBLE(c) || (c->isfloating)) continue;
if (i == selidx) { focus(c); break; }
}
arrange(selmon);