commit 711e0502de469cfdefb9e1f68501e87ac43f6563
Author: Jan Christoph Ebersbach <[email protected]>
Date: Mon Aug 29 18:16:04 2016 +0200
singletagset: fix issue in collection tags
diff --git a/dwm.suckless.org/patches/dwm-single_tagset-20160731-56a31dc.diff
b/dwm.suckless.org/patches/dwm-single_tagset-20160731-56a31dc.diff
index 776789c..0ea616c 100644
--- a/dwm.suckless.org/patches/dwm-single_tagset-20160731-56a31dc.diff
+++ b/dwm.suckless.org/patches/dwm-single_tagset-20160731-56a31dc.diff
@@ -127,7 +127,7 @@ Index: dwm/dwm.c
+ /* collect information about the tags in use */
+ for (tm = mons; tm; tm = tm->next)
+ if(tm != m)
-+ utags |= m->tagset[m->seltags];
++ utags |= tm->tagset[tm->seltags];
+
+ for (c = m->cl->clients; c; c = c->next)
+ if(ISVISIBLE(c, m)) {