aewl

changeset 506:b467b5a749db

I changed sanders patch to fix the ff issue to be simplier, though it needs testing if this really fixes the issue
author Anselm R. Garbe <arg@10kloc.org>
date Fri, 29 Sep 2006 12:56:01 +0200
parents 2c29d74b11dc
children 2824b5d0f0f0
files event.c
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line diff
     1.1 --- a/event.c	Fri Sep 29 12:38:27 2006 +0200
     1.2 +++ b/event.c	Fri Sep 29 12:56:01 2006 +0200
     1.3 @@ -177,9 +177,8 @@
     1.4  			configure(c);
     1.5  		XSync(dpy, False);
     1.6  		if(c->isfloat) {
     1.7 -			resize(c, False, TopLeft);
     1.8 -			if(!isvisible(c))
     1.9 -				ban(c);
    1.10 +			if(isvisible(c))
    1.11 +				resize(c, False, TopLeft);
    1.12  		}
    1.13  		else
    1.14  			arrange(NULL);