about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-06-11 10:25:02 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-06-11 10:25:02 +0100
commit38a43c2dcc2c75ece9ef1ac5cd82a8d05c7c519f (patch)
treecbfacc3c479c2154c744f386870ebc0f5e93b77e
parentc56533615f84df801f10dedc4d6ff267e0e8df0a (diff)
downloaddwm-38a43c2dcc2c75ece9ef1ac5cd82a8d05c7c519f.tar.gz
lt will point to a foo-layout during cleanup now (Gottox' suggestion), and togglelayout respects Arg->v
-rw-r--r--dwm.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 1c52d80..943e17b 100644
--- a/dwm.c
+++ b/dwm.c
@@ -363,8 +363,11 @@ checkotherwm(void) {
 void
 cleanup(void) {
 	Arg a = {.i = ~0};
+	Layout foo = { 0 };
+
 	close(STDIN_FILENO);
 	view(&a);
+	lt = &foo;
 	while(stack)
 		unmanage(stack);
 	if(dc.font.set)
@@ -1476,7 +1479,9 @@ togglefloating(const Arg *arg) {
 
 void
 togglelayout(const Arg *arg) {
-	if(++lt == &layouts[LENGTH(layouts)])
+	if(arg->v)
+		lt = (Layout *)arg->v;
+	else if(++lt == &layouts[LENGTH(layouts)])
 		lt = &layouts[0];
 	if(sel)
 		arrange();