summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-12 11:20:51 -0500
committerAnselm R. Garbe <arg@suckless.org>2007-02-12 11:20:51 -0500
commit6ba400ee0fa55d1178cac5f38f4465a1ddf30490 (patch)
tree196b2ebeae359aac5824a90781dc7fab5c251d2b
parentI don't see any reason why we should select for input on override-redirect wi... (diff)
downloaddwm-6ba400ee0fa55d1178cac5f38f4465a1ddf30490.tar.gz
dwm-6ba400ee0fa55d1178cac5f38f4465a1ddf30490.tar.bz2
dwm-6ba400ee0fa55d1178cac5f38f4465a1ddf30490.zip
yet another consistency fix of dwm
Diffstat (limited to '')
-rw-r--r--view.c2
1 files changed, 1 insertions, 1 deletions
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();