now dwm enforces max screen size also in tiled mode on non-floating clients which are maximized

This commit is contained in:
Anselm R. Garbe 2006-08-29 18:05:02 +02:00
parent 6828fba7a0
commit 70a3e62257
1 changed files with 14 additions and 13 deletions

27
event.c
View File

@ -150,7 +150,6 @@ buttonpress(XEvent *e)
static void
configurerequest(XEvent *e)
{
int ox, oy, ow, oh;
unsigned long newmask;
Client *c;
XConfigureRequestEvent *ev = &e->xconfigurerequest;
@ -158,10 +157,20 @@ configurerequest(XEvent *e)
XWindowChanges wc;
if((c = getclient(ev->window))) {
ox = c->x;
oy = c->y;
ow = c->w;
oh = c->h;
if(!c->isfloat && (arrange != dofloat) && c->ismax) {
synev.type = ConfigureNotify;
synev.xconfigure.display = dpy;
synev.xconfigure.event = c->win;
synev.xconfigure.window = c->win;
synev.xconfigure.x = sx;
synev.xconfigure.y = sy + bh;
synev.xconfigure.width = sw - 2;
synev.xconfigure.height = sw - 2 - bh;
synev.xconfigure.border_width = ev->border_width;
synev.xconfigure.above = None;
XSendEvent(dpy, c->win, True, NoEventMask, &synev);
return;
}
gravitate(c, True);
if(ev->value_mask & CWX)
c->x = ev->x;
@ -192,19 +201,11 @@ configurerequest(XEvent *e)
synev.xconfigure.height = c->h;
synev.xconfigure.border_width = c->border;
synev.xconfigure.above = None;
/* Send synthetic ConfigureNotify */
XSendEvent(dpy, c->win, True, NoEventMask, &synev);
}
XSync(dpy, False);
if(c->isfloat)
resize(c, False, TopLeft);
else if(c->ismax) {
resize(c, False, TopLeft);
c->x = ox;
c->y = oy;
c->w = ow;
c->h = oh;
}
else
arrange(NULL);
}