about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
authorarg@localhost.10kloc.org <unknown>2006-08-21 17:35:37 +0200
committerarg@localhost.10kloc.org <unknown>2006-08-21 17:35:37 +0200
commit950a1ab5afe3e94dfe78e3ff2216bb9f444d5148 (patch)
treecd1a6d420853a7375c5f8d0630554ce0ea89e184 /client.c
parent1b9fe55025f84a8430b4be5822784551746eee8d (diff)
downloaddwm-950a1ab5afe3e94dfe78e3ff2216bb9f444d5148.tar.gz
windows which have set transient_for hint inherit the transient_for window tags now
Diffstat (limited to 'client.c')
-rw-r--r--client.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/client.c b/client.c
index 8b98c19..eb23452 100644
--- a/client.c
+++ b/client.c
@@ -214,6 +214,7 @@ killclient(Arg *arg)
 void
 manage(Window w, XWindowAttributes *wa)
 {
+	unsigned int i;
 	Client *c, *tc;
 	Window trans;
 	XSetWindowAttributes twa;
@@ -261,7 +262,11 @@ manage(Window w, XWindowAttributes *wa)
 	grabbutton(c, Button2, MODKEY);
 	grabbutton(c, Button3, MODKEY);
 
-	settags(c);
+	if((tc = getclient(trans))) /* inherit tags */
+		for(i = 0; i < ntags; i++)
+			c->tags[i] = tc->tags[i];
+	else
+		settags(c);
 	if(!c->isfloat)
 		c->isfloat = trans
 			|| (c->maxw && c->minw &&