about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 4d5a9b9..de20b36 100644
--- a/dwm.c
+++ b/dwm.c
@@ -313,7 +313,7 @@ arrange(Monitor *m) {
 		m->layout->arrange(m);
 	else
 		for(i = 0; i < mcount; i++)
-			m->layout->arrange(&monitors[i]);
+			monitors[i].layout->arrange(&monitors[i]);
 	focus(NULL);
 	restack(m);
 }
kkartik.com> 2015-02-17 17:14:45 -0800 775 - starting to reorg C++ mu to use layers' href='/akkartik/mu/commit/cpp/literate/tangle/makefile?h=main&id=515309164793b2e03c15954bf8a89f0f288a7f2c'>51530916 ^
97f69507 ^
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