about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--client.c2
-rw-r--r--view.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/client.c b/client.c
index 988d3ca..d04692d 100644
--- a/client.c
+++ b/client.c
@@ -233,7 +233,7 @@ manage(Window w, XWindowAttributes *wa) {
 	settags(c, getclient(trans));
 	if(!c->isfloat)
 		c->isfloat = trans
-			|| (c->maxw && c->minw &&
+			|| (c->maxw && c->minw && c->maxh && c->minh &&
 				c->maxw == c->minw && c->maxh == c->minh);
 	resizetitle(c);
 	if(clients)
diff --git a/view.c b/view.c
index daf0711..facbb4c 100644
--- a/view.c
+++ b/view.c
@@ -44,6 +44,10 @@ reorder(void) {
 static void
 togglemax(Client *c) {
 	XEvent ev;
+		
+	if (x->maxw && x->minw && x->maxh && x->minh &&
+			x->maxw == x->minw && x->maxh == x->minh)
+		return;
 
 	if((c->ismax = !c->ismax)) {
 		c->rx = c->x; c->x = sx;
id=9a31c34f0f2aab901be29e0844ae2fcb9b3f4a13'>9a31c34f ^
5f128523 ^
9a31c34f ^

5f128523 ^



9a31c34f ^


5f128523 ^
9a31c34f ^


















5f128523 ^
9a31c34f ^




5f128523 ^
9a31c34f ^
5f128523 ^
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79