first step to a more flexible dotile() algorithm

This commit is contained in:
Anselm R. Garbe
2006-09-29 12:38:27 +02:00
parent a118a57fe3
commit 14d05e7c72
7 changed files with 52 additions and 35 deletions

View File

@ -176,8 +176,11 @@ configurerequest(XEvent *e) {
else
configure(c);
XSync(dpy, False);
if(c->isfloat)
if(c->isfloat) {
resize(c, False, TopLeft);
if(!isvisible(c))
ban(c);
}
else
arrange(NULL);
}