aewl
changeset 385:37706ba7d492
fixed
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Tue, 29 Aug 2006 17:33:27 +0200 |
parents | 126e78129f1d |
children | 58288246d16c |
files | event.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/event.c Tue Aug 29 17:31:55 2006 +0200 1.2 +++ b/event.c Tue Aug 29 17:33:27 2006 +0200 1.3 @@ -196,7 +196,9 @@ 1.4 XSendEvent(dpy, c->win, True, NoEventMask, &synev); 1.5 } 1.6 XSync(dpy, False); 1.7 - if(c->isfloat || c->ismax) { 1.8 + if(c->isfloat) 1.9 + resize(c, False, TopLeft); 1.10 + else if(c->ismax) { 1.11 resize(c, False, TopLeft); 1.12 c->x = ox; 1.13 c->y = oy;