all repos — dwm @ 3aff96177cff61b61509540eb02cc38c4a59eb1e

my dwm build

togglefloat should only work in dotile mode (thanks to Sander for this hint)
arg@mig29 unknown
Tue, 28 Nov 2006 17:35:31 +0100
commit

3aff96177cff61b61509540eb02cc38c4a59eb1e

parent

0a915eba8fedeaf6ab5c3a1808962f5467aa8c5e

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M view.cview.c

@@ -202,7 +202,7 @@ }

void togglefloat(Arg *arg) { - if (!sel) + if (!sel || arrange == dofloat) return; sel->isfloat = !sel->isfloat; arrange();