diff options
author | arg@mig29 <unknown> | 2006-11-28 17:35:31 +0100 |
---|---|---|
committer | arg@mig29 <unknown> | 2006-11-28 17:35:31 +0100 |
commit | 3aff96177cff61b61509540eb02cc38c4a59eb1e (patch) | |
tree | 7504a8f2fa39921317ffebc30f95cda7be863cc5 /view.c | |
parent | 0a915eba8fedeaf6ab5c3a1808962f5467aa8c5e (diff) | |
download | dwm-3aff96177cff61b61509540eb02cc38c4a59eb1e.tar.gz |
togglefloat should only work in dotile mode (thanks to Sander for this hint)
Diffstat (limited to 'view.c')
-rw-r--r-- | view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view.c b/view.c index 167a1c4..c11e349 100644 --- a/view.c +++ b/view.c @@ -202,7 +202,7 @@ restack(void) { void togglefloat(Arg *arg) { - if (!sel) + if (!sel || arrange == dofloat) return; sel->isfloat = !sel->isfloat; arrange(); |