diff options
author | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-18 11:38:31 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-18 11:38:31 +0200 |
commit | 4f8b08d330a6c377ab919f48b8e922d1c5ded601 (patch) | |
tree | bcfed5668645ef87fd2b7c3ff0d757912169f016 /draw.c | |
parent | 849e631510ed6533ac930449804e477fe67a43c2 (diff) | |
download | dwm-4f8b08d330a6c377ab919f48b8e922d1c5ded601.tar.gz |
added heretag command which allows to tag a client of a foreign tag with current tag
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/draw.c b/draw.c index b8cfffd..de4bdb0 100644 --- a/draw.c +++ b/draw.c @@ -97,7 +97,7 @@ drawall() { Client *c; - for(c = clients; c; c = getnext(c->next)) + for(c = clients; c; c = getnext(c->next, tsel)) drawtitle(c); drawstatus(); } |