Commit 3aff961

arg@mig29 <unknown>
2006-11-28 11:35:31
togglefloat should only work in dotile mode (thanks to Sander for this hint)
1 parent 0a915eb
Changed files (1)
view.c
@@ -202,7 +202,7 @@ restack(void) {
 
 void
 togglefloat(Arg *arg) {
-	if (!sel)
+	if (!sel || arrange == dofloat)
 		return;
 	sel->isfloat = !sel->isfloat;
 	arrange();