aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-04 18:17:02 +0200
committerarg@10ksloc.org <unknown>2006-08-04 18:17:02 +0200
commit3d73084b5ef25bca354b32e049b2904aa9519c09 (patch)
treee052d494cf2f7e1c32287d5582a22285c5518db4 /tag.c
parent12b1d439e46e7881942a6d378b3b874c4c9f7555 (diff)
downloaddwm-3d73084b5ef25bca354b32e049b2904aa9519c09.tar.gz
fixed view-change bug reported on the list
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c24
1 files changed, 10 insertions, 14 deletions
diff --git a/tag.c b/tag.c
index 015a06a..72d87d3 100644
--- a/tag.c
+++ b/tag.c
@@ -57,14 +57,12 @@ dofloat(Arg *arg)
else
ban(c);
}
- if(sel && !sel->tags[tsel]) {
- if((sel = getnext(clients))) {
- higher(sel);
- focus(sel);
- }
- else
- XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
+ if((sel = getnext(clients))) {
+ higher(sel);
+ focus(sel);
}
+ else
+ XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
drawall();
}
@@ -122,14 +120,12 @@ dotile(Arg *arg)
else
ban(c);
}
- if(!sel || (sel && !sel->tags[tsel])) {
- if((sel = getnext(clients))) {
- higher(sel);
- focus(sel);
- }
- else
- XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
+ if((sel = getnext(clients))) {
+ higher(sel);
+ focus(sel);
}
+ else
+ XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
drawall();
}