about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-05-23 07:49:05 +0200
committerAnselm R. Garbe <arg@suckless.org>2007-05-23 07:49:05 +0200
commit69dfcaa317f9519724bb179ba8254e73a7d7f38e (patch)
tree7057a65a0b151b7a75e558291a1fad8566006422
parent6ee8e3e93b79b7c92246d7d520d5a24be59e5807 (diff)
downloaddwm-69dfcaa317f9519724bb179ba8254e73a7d7f38e.tar.gz
reverted last change after Sander pointed out the original decision
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
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();
 }
 
f='#n122'>122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204