From cff951c65086950eeef5723b65dc06cbe7cdfa19 Mon Sep 17 00:00:00 2001 From: "arg@mmvi" Date: Fri, 22 Sep 2006 18:48:35 +0200 Subject: removed all dotile checks --- view.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'view.c') diff --git a/view.c b/view.c index fd53dc8..ab1924a 100644 --- a/view.c +++ b/view.c @@ -50,7 +50,7 @@ togglemax(Client *c) c->rx = c->x; c->x = sx; c->ry = c->y; c->y = bh; c->rw = c->w; c->w = sw; - c->rh = c->h; c->h = sh - bh; + c->rh = c->h; c->h = sh - bh - 2; } else { c->x = c->rx; @@ -208,7 +208,7 @@ resizecol(Arg *arg) { for(n = 0, c = clients; c; c = c->next) if(isvisible(c) && !c->isfloat) n++; - if(!sel || sel->isfloat || n < 2 || (arrange != dotile)) + if(!sel || sel->isfloat || n < 2 || (arrange == dofloat)) return; if(sel == getnext(clients)) { @@ -305,7 +305,7 @@ zoom(Arg *arg) { for(n = 0, c = clients; c; c = c->next) if(isvisible(c) && !c->isfloat) n++; - if(n < 2 || (arrange != dotile)) + if(n < 2 || (arrange == dofloat)) return; if((c = sel) == nexttiled(clients)) -- cgit v1.2.3-54-g00ecf