comparison event.c @ 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 ede48935f2b3
comparison
equal deleted inserted replaced
505:2c29d74b11dc 506:b467b5a749db
175 XConfigureWindow(dpy, c->win, newmask, &wc); 175 XConfigureWindow(dpy, c->win, newmask, &wc);
176 else 176 else
177 configure(c); 177 configure(c);
178 XSync(dpy, False); 178 XSync(dpy, False);
179 if(c->isfloat) { 179 if(c->isfloat) {
180 resize(c, False, TopLeft); 180 if(isvisible(c))
181 if(!isvisible(c)) 181 resize(c, False, TopLeft);
182 ban(c);
183 } 182 }
184 else 183 else
185 arrange(NULL); 184 arrange(NULL);
186 } 185 }
187 else { 186 else {