dwm-meillo
changeset 277:1e7fa455e3b4
applied the saner patch (removed the pathetic one)
author | Anselm R.Garbe <arg@10ksloc.org> |
---|---|
date | Mon, 14 Aug 2006 15:33:23 +0200 |
parents | 9a0a351dd910 |
children | c1187ddcd7f7 |
files | tag.c |
diffstat | 1 files changed, 3 insertions(+), 7 deletions(-) [+] |
line diff
1.1 --- a/tag.c Mon Aug 14 15:31:58 2006 +0200 1.2 +++ b/tag.c Mon Aug 14 15:33:23 2006 +0200 1.3 @@ -37,15 +37,11 @@ 1.4 void 1.5 appendtag(Arg *arg) 1.6 { 1.7 - Client *c = sel; 1.8 - 1.9 - if(!c) 1.10 + if(!sel) 1.11 return; 1.12 1.13 - c->tags[arg->i] = True; 1.14 - arrange(NULL); 1.15 - focus(c); 1.16 - restack(); 1.17 + sel->tags[arg->i] = True; 1.18 + settitle(sel); 1.19 } 1.20 1.21 void