reverted last change after Sander pointed out the original decision

This commit is contained in:
Anselm R. Garbe 2007-05-23 07:49:05 +02:00
parent 6ee8e3e93b
commit 69dfcaa317
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}