reverted last change after Sander pointed out the original decision
authorAnselm R. Garbe <arg@suckless.org>
Wed, 23 May 2007 07:49:05 +0200
changeset 894 1f676729e03f
parent 893 eb1add67b218
child 895 b461240ba625
reverted last change after Sander pointed out the original decision
client.c
--- a/client.c	Wed May 23 07:47:20 2007 +0200
+++ b/client.c	Wed May 23 07:49:05 2007 +0200
@@ -304,7 +304,7 @@
 togglefloating(const char *arg) {
 	if(!sel || lt->arrange == floating)
 		return;
-	sel->isfloating = !sel->isfloating || sel->isfixed;
+	sel->isfloating = !sel->isfloating;
 	lt->arrange();
 }