reverted last change after Sander pointed out the original decision - dwm - My fork of dwm (frankenstein's monster)
(HTM) git clone git://git.drkhsh.at/dwm.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 69dfcaa317f9519724bb179ba8254e73a7d7f38e
(DIR) parent 6ee8e3e93b79b7c92246d7d520d5a24be59e5807
(HTM) Author: Anselm R. Garbe <arg@suckless.org>
Date: Wed, 23 May 2007 07:49:05 +0200
reverted last change after Sander pointed out the original decision
Diffstat:
M client.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git 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();
}