diff options
| author | Anselm R. Garbe <[email protected]> | 2006-08-29 17:33:27 +0200 |
|---|---|---|
| committer | Anselm R. Garbe <[email protected]> | 2006-08-29 17:33:27 +0200 |
| commit | 6828fba7a002062dd383f83bb8d584a82fc7677a (patch) | |
| tree | 9f5a7e2c712a485f8b954de115799036922039d6 /event.c | |
| parent | configurenotify remembers max geom now, and restores this if necessary, howev... (diff) | |
| download | seiwm-6828fba7a002062dd383f83bb8d584a82fc7677a.tar.xz seiwm-6828fba7a002062dd383f83bb8d584a82fc7677a.zip | |
fixed
Diffstat (limited to 'event.c')
| -rw-r--r-- | event.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; |