diff options
author | Eduardo Pedroni <e.pedroni91@gmail.com> | 2017-04-11 10:51:38 +0200 |
---|---|---|
committer | Eduardo Pedroni <e.pedroni91@gmail.com> | 2017-04-11 10:51:38 +0200 |
commit | 4ba8316ee8bba3fcad37a65bf9bdfefdea044623 (patch) | |
tree | b082beca5571b0e061168f1e2f11b47a450f98aa | |
parent | f3af3ecce0c408fa0109485cc44c386dc542b246 (diff) |
Sending client to a different monitor no longer assigns the monitor's tags to the client
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1718,7 +1718,7 @@ sendmon(Client *c, Monitor *m) { detach(c); detachstack(c); c->mon = m; - c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */ + //c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */ attach(c); attachstack(c); focus(NULL); |