pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b625eb
)
apply resize hints in floating layout
author
Connor Lane Smith
<cls@lubutu.com>
Tue, 25 Oct 2011 19:08:08 +0000
(20:08 +0100)
committer
Connor Lane Smith
<cls@lubutu.com>
Tue, 25 Oct 2011 19:08:08 +0000
(20:08 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
d108e12
..
d274b50
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-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 */