diff options
author | arg@10ksloc.org <unknown> | 2006-08-03 12:12:26 +0200 |
---|---|---|
committer | arg@10ksloc.org <unknown> | 2006-08-03 12:12:26 +0200 |
commit | b35575574be53a1b3be42d7037d2f432a19a3890 (patch) | |
tree | 6be2344c68ec6590fa816bbd578e0f36fe21c0b8 /client.c | |
parent | 666b4563a0064dd7aa27159813124837d306f81c (diff) | |
download | dwm-b35575574be53a1b3be42d7037d2f432a19a3890.tar.gz |
removed TLast tag enum, now tags is simple defined as char *[] array, the rest is calculated correctly, rules take an int array for the tags
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client.c b/client.c index f4ed1a0..91d031e 100644 --- a/client.c +++ b/client.c @@ -16,7 +16,7 @@ resizetitle(Client *c) int i; c->tw = 0; - for(i = 0; i < TLast; i++) + for(i = 0; i < ntags; i++) if(c->tags[i]) c->tw += textw(tags[i]); c->tw += textw(c->name); @@ -211,6 +211,7 @@ manage(Window w, XWindowAttributes *wa) XSetWindowAttributes twa; c = emallocz(sizeof(Client)); + c->tags = emallocz(ntags * sizeof(Bool)); c->win = w; c->x = c->tx = wa->x; c->y = c->ty = wa->y; @@ -429,6 +430,7 @@ unmanage(Client *c) if(!sel) sel = clients; } + free(c->tags); free(c); XSync(dpy, False); |