diff options
| author | arg@mig29 <unknown> | 2006-11-28 11:35:31 -0500 |
|---|---|---|
| committer | arg@mig29 <unknown> | 2006-11-28 11:35:31 -0500 |
| commit | 3aff96177cff61b61509540eb02cc38c4a59eb1e (patch) | |
| tree | 7504a8f2fa39921317ffebc30f95cda7be863cc5 | |
| parent | applied Alex Elide's tricky patch, thanks! (diff) | |
| download | dwm-3aff96177cff61b61509540eb02cc38c4a59eb1e.tar.gz dwm-3aff96177cff61b61509540eb02cc38c4a59eb1e.tar.bz2 dwm-3aff96177cff61b61509540eb02cc38c4a59eb1e.zip | |
togglefloat should only work in dotile mode (thanks to Sander for this hint)
| -rw-r--r-- | view.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -202,7 +202,7 @@ restack(void) { void togglefloat(Arg *arg) { - if (!sel) + if (!sel || arrange == dofloat) return; sel->isfloat = !sel->isfloat; arrange(); |
