Mercurial > dwm-meillo
diff tag.c @ 431:a230e4432bb7
moved transient_for tag inheritance to settags
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Wed, 06 Sep 2006 09:21:17 +0200 |
parents | 1e8aba00964e |
children | 9d73c8298b2e |
line wrap: on
line diff
--- a/tag.c Wed Sep 06 09:13:31 2006 +0200 +++ b/tag.c Wed Sep 06 09:21:17 2006 +0200 @@ -76,15 +76,19 @@ } void -settags(Client *c) +settags(Client *c, Client *trans) { char prop[512]; unsigned int i, j; regmatch_t tmp; - Bool matched = False; + Bool matched = trans != NULL; XClassHint ch; - if(XGetClassHint(dpy, c->win, &ch)) { + if(matched) { + for(i = 0; i < ntags; i++) + c->tags[i] = trans->tags[i]; + } + else if(XGetClassHint(dpy, c->win, &ch)) { snprintf(prop, sizeof(prop), "%s:%s:%s", ch.res_class ? ch.res_class : "", ch.res_name ? ch.res_name : "", c->name);