aboutsummarylogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe2008-06-19 14:13:07 +0100
committerAnselm R Garbe2008-06-19 14:13:07 +0100
commit3270d71f575b38ec8ed76d02e9b1aa3780237df7 (patch)
tree3093fd894cdf86193c3248750350219adb382491 /dwm.c
parent89e35f967858129a2da3d70b747fb62ddafdef3f (diff)
downloadaur-3270d71f575b38ec8ed76d02e9b1aa3780237df7.tar.gz
fix
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index a94cacc0a1e0..fcdab10e602a 100644
--- a/dwm.c
+++ b/dwm.c
@@ -274,9 +274,9 @@ arrange(void) {
for(c = clients; c; c = c->next)
if(c->tags & tagset[seltags]) { /* is visible */
+ c->isbanned = False;
if(!lt[sellt]->arrange || c->isfloating)
resize(c, c->x, c->y, c->w, c->h, True);
- c->isbanned = False;
}
else if(!c->isbanned) {
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);