about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2011-10-25 20:08:08 +0100
committerConnor Lane Smith <cls@lubutu.com>2011-10-25 20:08:08 +0100
commitf68a01cd767659190bf690e29986184348672647 (patch)
treeaa59964f31744cb96939dd4308ef4518edeaef80 /dwm.c
parent2b625eb73ed48ce671e497c60b61f4411c50c817 (diff)
downloaddwm-f68a01cd767659190bf690e29986184348672647.tar.gz
apply resize hints in floating layout
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index d108e12..d274b50 100644
--- 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 */
s drawn' href='/akkartik/text.love/commit/Manual_tests.md?id=e2734cd572a8578ee07637f9c5471c0ccce119cc'>e2734cd ^
6587959 ^
e2734cd ^
e1c5a42 ^

192e16b ^
0114cd1 ^



9aa7577 ^
6a1d8e5 ^
9c8285b ^



da9d948 ^




e839c30 ^


53c3524 ^
5b2e629 ^

e2e3aea ^
2e3a85d ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56