ttag fix - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit b9dee2c6f172478b7a652cdf9d074ee0bd9acddc
(DIR) parent a73ff905b04a5f1dab6e0aface03317a81528a95
(HTM) Author: Anselm R Garbe <garbeam@gmail.com>
Date: Fri, 26 Jun 2009 16:41:27 +0100
ttag fix
Diffstat:
M dwm.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
---
(DIR) diff --git a/dwm.c b/dwm.c
t@@ -1502,12 +1502,10 @@ tagmon(const Arg *arg) {
detach(c);
detachstack(c);
c->mon = m;
- c->tags = m->seltags; /* assign tags of target monitor */
+ c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
attach(c);
attachstack(c);
- m->sel = c;
- for(c = selmon->stack; c && !ISVISIBLE(c); c = c->snext);
- selmon->sel = c;
+ focus(NULL);
arrange();
break;
}