From: Anselm R. Garbe <arg@suckless.org>
Date: Mon, 12 Feb 2007 16:20:51 +0000 (+0100)
Subject: yet another consistency fix of dwm
X-Git-Url: https://git.xinqibao.xyz/dwm.git/commitdiff_plain/6ba400ee0fa55d1178cac5f38f4465a1ddf30490?ds=sidebyside

yet another consistency fix of dwm
---

diff --git a/view.c b/view.c
index 29b6b63..ded304e 100644
--- a/view.c
+++ b/view.c
@@ -207,7 +207,7 @@ restack(void) {
 
 void
 togglefloat(Arg *arg) {
-	if (!sel || arrange == dofloat)
+	if(!sel || arrange == dofloat)
 		return;
 	sel->isfloat = !sel->isfloat;
 	arrange();