diff options
| author | Connor Lane Smith <cls@lubutu.com> | 2011-10-25 20:08:08 +0100 | 
|---|---|---|
| committer | Connor Lane Smith <cls@lubutu.com> | 2011-10-25 20:08:08 +0100 | 
| commit | f68a01cd767659190bf690e29986184348672647 (patch) | |
| tree | aa59964f31744cb96939dd4308ef4518edeaef80 | |
| parent | 2b625eb73ed48ce671e497c60b61f4411c50c817 (diff) | |
| download | dwm-f68a01cd767659190bf690e29986184348672647.tar.gz | |
apply resize hints in floating layout
| -rw-r--r-- | dwm.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -349,7 +349,7 @@ applysizehints(Client *c, int *x, int *y, int *w, int *h, Bool interact) {  		*h = bh;  	if(*w < bh)  		*w = bh; -	if(resizehints || c->isfloating) { +	if(resizehints || c->isfloating || !c->mon->lt[c->mon->sellt]->arrange) {  		/* see last two sentences in ICCCM 4.1.2.3 */  		baseismin = c->basew == c->minw && c->baseh == c->minh;  		if(!baseismin) { /* temporarily remove base dimensions */ | 
