aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 15:31:58 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 15:31:58 +0200
commitfe3dfbbe90f813294bb69e41f996a000f63c1560 (patch)
tree48a2cc8396f025857b8a23e2b06785e81afe8306 /tag.c
parent2ffdc1936cf13af5df0cc6d9415961dbe13b9cf8 (diff)
downloaddwm-fe3dfbbe90f813294bb69e41f996a000f63c1560.tar.zst
pplied Sanders appendtag patch
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tag.c b/tag.c
index c4d3b34..b5bebea 100644
--- a/tag.c
+++ b/tag.c
@@ -37,11 +37,15 @@ void (*arrange)(Arg *) = DEFMODE;
void
appendtag(Arg *arg)
{
- if(!sel)
+ Client *c = sel;
+
+ if(!c)
return;
- sel->tags[arg->i] = True;
+ c->tags[arg->i] = True;
arrange(NULL);
+ focus(c);
+ restack();
}
void