Browse Source

fixed

config
Anselm R. Garbe 18 years ago
parent
commit
6828fba7a0
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      event.c

+ 3
- 1
event.c View File

@ -196,7 +196,9 @@ configurerequest(XEvent *e)
XSendEvent(dpy, c->win, True, NoEventMask, &synev);
}
XSync(dpy, False);
if(c->isfloat || c->ismax) {
if(c->isfloat)
resize(c, False, TopLeft);
else if(c->ismax) {
resize(c, False, TopLeft);
c->x = ox;
c->y = oy;


Loading…
Cancel
Save