about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client.c b/client.c
index 114aedd..ed19d9c 100644
--- a/client.c
+++ b/client.c
@@ -272,9 +272,9 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
 			w -= (w - c->basew) % c->incw;
 		if(c->inch)
 			h -= (h - c->baseh) % c->inch;
-		if(w <= 0 || h <= 0)
-			return;
 	}
+	if(w <= 0 || h <= 0)
+		return;
 	/* offscreen appearance fixes */
 	if(x > sw)
 		x = sw - w - 2 * c->border;
.mu?h=hlt&id=68578a7828ce8300fa10b28b5f57e56723303e93'>68578a78 ^
29fe558a ^
192d59d3 ^
4543a0dd ^
f03c9c05 ^
433a7c7b ^
25cd8e98 ^




801e8b50 ^
25cd8e98 ^
215e35e4 ^

68578a78 ^
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