aboutsummarylogtreecommitdiffstats
path: root/layout.c
diff options
context:
space:
mode:
authorAnselm R. Garbe2007-06-04 11:37:33 +0200
committerAnselm R. Garbe2007-06-04 11:37:33 +0200
commit834ed516a3e20469c5edb636cea1671b66e3583c (patch)
treeddda6b86d3c608c0c7ad385fa2077f3cd10991dd /layout.c
parente1353f03062718de55c3f3dff33eeabbbdea8665 (diff)
downloadaur-834ed516a3e20469c5edb636cea1671b66e3583c.tar.gz
applied anudots [un]ban repair patch
Diffstat (limited to 'layout.c')
-rw-r--r--layout.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/layout.c b/layout.c
index f3f8e26d3c2b..0706c624a4d3 100644
--- a/layout.c
+++ b/layout.c
@@ -88,9 +88,7 @@ floating(void) {
for(c = clients; c; c = c->next)
if(isvisible(c)) {
- if(c->isbanned)
- XMoveWindow(dpy, c->win, c->x, c->y);
- c->isbanned = False;
+ unban(c);
resize(c, c->x, c->y, c->w, c->h, True);
}
else