From 25060031a5e9a505c53d8462c087d80013ffdc16 Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Tue, 5 Sep 2006 13:20:29 +0200 Subject: hotfix --- view.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/view.c b/view.c index f1be609..8f5ad64 100644 --- a/view.c +++ b/view.c @@ -172,7 +172,9 @@ focusprev(Arg *arg) void growcol(Arg *arg) { - if(!sel || !clients || !clients->next || (arrange != dotile)) + Client *c = getnext(clients); + + if(!sel || !c || !getnext(c->next) || (arrange != dotile)) return; if(sel == getnext(clients)) { if(mw + arg->i > sw - 100) -- cgit 1.4.1-2-gfad0 > Unnamed repository; edit this file 'description' to name the repository.
about summary refs log tree commit diff stats
path: root/Makefile
blob: 536960bafa5a5c370ed0e7f3caafdf7eff7c1529 (plain) (blame)
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