From: Anselm R Garbe <garbeam@gmail.com>
Date: Thu, 25 Jun 2009 10:10:19 +0000 (+0100)
Subject: assign selected tags of target monitor to client when tagmon is performed (less obtru... 
X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;h=e3f0445df1dcdd34189c9d48cbad67dd32764575;p=dwm.git

assign selected tags of target monitor to client when tagmon is performed (less obtrusive imho)
---

diff --git a/dwm.c b/dwm.c
index b54ccd4..6459512 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1502,6 +1502,7 @@ tagmon(const Arg *arg) {
 			detach(c);
 			detachstack(c);
 			c->mon = m;
+			c->tags = selmon->seltags; /* assign tags of target monitor */
 			attach(c);
 			attachstack(c);
 			m->sel = c;