diff options
author | Anselm R. Garbe <arg@10kloc.org> | 2006-09-06 09:21:17 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@10kloc.org> | 2006-09-06 09:21:17 +0200 |
commit | aaad7bfd15a023ab693bb17e2974b57cae7e7e21 (patch) | |
tree | 366b25f033eafe0439ccfd6e00a40de4692adb65 /client.c | |
parent | 0915da8842fd6e16b804ae3205ec2f6baaaa342c (diff) | |
download | dwm-aaad7bfd15a023ab693bb17e2974b57cae7e7e21.tar.gz |
moved transient_for tag inheritance to settags
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/client.c b/client.c index 4f2a69c..586a87f 100644 --- a/client.c +++ b/client.c @@ -199,7 +199,7 @@ void manage(Window w, XWindowAttributes *wa) { unsigned int i; - Client *c, *tc; + Client *c; Window trans; XSetWindowAttributes twa; @@ -238,11 +238,7 @@ manage(Window w, XWindowAttributes *wa) CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa); grabbuttons(c, False); - if((tc = getclient(trans))) /* inherit tags */ - for(i = 0; i < ntags; i++) - c->tags[i] = tc->tags[i]; - else - settags(c); + settags(c, getclient(trans)); if(!c->isfloat) c->isfloat = trans || (c->maxw && c->minw && |