From 69dfcaa317f9519724bb179ba8254e73a7d7f38e Mon Sep 17 00:00:00 2001
From: "Anselm R. Garbe" <arg@suckless.org>
Date: Wed, 23 May 2007 07:49:05 +0200
Subject: [PATCH] reverted last change after Sander pointed out the original
 decision

---
 client.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client.c b/client.c
index 3e9b239..cf3a686 100644
--- a/client.c
+++ b/client.c
@@ -304,7 +304,7 @@ void
 togglefloating(const char *arg) {
 	if(!sel || lt->arrange == floating)
 		return;
-	sel->isfloating = !sel->isfloating || sel->isfixed;
+	sel->isfloating = !sel->isfloating;
 	lt->arrange();
 }