Browse Source

applied anydots remark of togglefloating()

Anselm R. Garbe 18 years ago
parent
commit
6ee8e3e93b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client.c

+ 1 - 1
client.c

@@ -304,7 +304,7 @@ void
 togglefloating(const char *arg) {
 	if(!sel || lt->arrange == floating)
 		return;
-	sel->isfloating = !sel->isfloating;
+	sel->isfloating = !sel->isfloating || sel->isfixed;
 	lt->arrange();
 }