yet another consistency fix of dwm

This commit is contained in:
Anselm R. Garbe 2007-02-12 17:20:51 +01:00
parent 35e65ea640
commit 6ba400ee0f
1 changed files with 1 additions and 1 deletions

2
view.c
View File

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