aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-05-23 07:47:20 +0200
committerAnselm R. Garbe <arg@suckless.org>2007-05-23 07:47:20 +0200
commit6ee8e3e93b79b7c92246d7d520d5a24be59e5807 (patch)
tree87eb3a9ab04ef7dcb086d018dd77cfb142e8543d /client.c
parent8439369db9e340bf260efb1c29282ccb5d224194 (diff)
downloaddwm-6ee8e3e93b79b7c92246d7d520d5a24be59e5807.tar.zst
applied anydots remark of togglefloating()
Diffstat (limited to 'client.c')
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index cf3a686..3e9b239 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->isfloating = !sel->isfloating || sel->isfixed;
lt->arrange();
}