Mercurial > dwm-meillo
changeset 550:787f6ae02f29
and another fix
author | arg@mig29 |
---|---|
date | Fri, 27 Oct 2006 13:29:35 +0200 (2006-10-27) |
parents | fd1061442711 |
children | 798b906378d6 |
files | client.c event.c |
diffstat | 2 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/client.c Fri Oct 27 13:28:26 2006 +0200 +++ b/client.c Fri Oct 27 13:29:35 2006 +0200 @@ -209,8 +209,6 @@ c->h = wa->height; c->th = bh; updatesize(c); - c->isfixed = (c->maxw && c->minw && c->maxh && c->minh && - c->maxw == c->minw && c->maxh == c->minh); if(c->x + c->w + 2 * BORDERPX > sw) c->x = sw - c->w - 2 * BORDERPX; if(c->x < sx) @@ -341,6 +339,8 @@ } else c->minw = c->minh = 0; + c->isfixed = (c->maxw && c->minw && c->maxh && c->minh && + c->maxw == c->minw && c->maxh == c->minh); if(c->flags & PWinGravity) c->grav = size.win_gravity; else
--- a/event.c Fri Oct 27 13:28:26 2006 +0200 +++ b/event.c Fri Oct 27 13:29:35 2006 +0200 @@ -136,7 +136,8 @@ } else if(ev->button == Button2) zoom(NULL); - else if(ev->button == Button3 && (arrange == dofloat || c->isfloat) && !c->isfixed) { + else if(ev->button == Button3 && (arrange == dofloat || c->isfloat) && + !c->isfixed) { restack(); resizemouse(c); }