togglefloat should only work in dotile mode (thanks to Sander for this hint)
This commit is contained in:
parent
0a915eba8f
commit
3aff96177c
1 changed files with 1 additions and 1 deletions
2
view.c
2
view.c
|
@ -202,7 +202,7 @@ restack(void) {
|
||||||
|
|
||||||
void
|
void
|
||||||
togglefloat(Arg *arg) {
|
togglefloat(Arg *arg) {
|
||||||
if (!sel)
|
if (!sel || arrange == dofloat)
|
||||||
return;
|
return;
|
||||||
sel->isfloat = !sel->isfloat;
|
sel->isfloat = !sel->isfloat;
|
||||||
arrange();
|
arrange();
|
||||||
|
|
Loading…
Reference in a new issue