about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-05 13:19:18 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-05 13:19:18 +0200
commitc7ae6334b7f0e8ac1fbc4da977fef4b92792767b (patch)
treeecff4cad3dda5cfe24cdd1813d87ee6ffb334f9a
parenteac04882b40595d724f4578b5acec5f22df570e3 (diff)
downloaddwm-c7ae6334b7f0e8ac1fbc4da977fef4b92792767b.tar.gz
applied a fix related to Sanders remark to growcol
-rw-r--r--view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/view.c b/view.c
index dc10e5e..f1be609 100644
--- a/view.c
+++ b/view.c
@@ -172,7 +172,7 @@ focusprev(Arg *arg)
 void
 growcol(Arg *arg)
 {
-	if(!sel || (arrange != dotile))
+	if(!sel || !clients || !clients->next || (arrange != dotile))
 		return;
 	if(sel == getnext(clients)) {
 		if(mw + arg->i > sw - 100)
tter Kartik K. Agaram <vc@akkartik.com> 2022-11-11 18:02:20 -0800 source editing: highlight [[ ]] comments/strings' href='/akkartik/view.love/commit/colorize.lua?id=d5c34ba043d6fb470b2b358881a71aec079dd823'>d5c34ba ^
e1c5a42 ^




d5c34ba ^
e1c5a42 ^
d5c34ba ^


e1c5a42 ^























22bf3da ^
e1c5a42 ^











22bf3da ^
e1c5a42 ^




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
80
81
82