about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 17:50:48 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 17:50:48 +0200
commit78b050c13c8ea660ed801c21bddd2957a2bc3f40 (patch)
tree2e0205e87420d8a7f62477aa101b435a7e0e9fbc
parent4ad20ffc2c23d29329bc7349985d889f2cb45612 (diff)
downloaddwm-78b050c13c8ea660ed801c21bddd2957a2bc3f40.tar.gz
applied sanders tag()/toggletag() fixes
-rw-r--r--tag.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tag.c b/tag.c
index f6f4535..a718ebd 100644
--- a/tag.c
+++ b/tag.c
@@ -269,7 +269,8 @@ tag(Arg *arg)
 		sel->tags[i] = False;
 	sel->tags[arg->i] = True;
 	settitle(sel);
-	arrange(NULL);
+	if(!isvisible(sel))
+		arrange(NULL);
 }
 
 void
@@ -292,6 +293,8 @@ toggletag(Arg *arg)
 	if(i == ntags)
 		sel->tags[arg->i] = True;
 	settitle(sel);
+	if(!isvisible(sel))
+		arrange(NULL);
 }