diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-12 17:20:51 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-12 17:20:51 +0100 |
commit | 6ba400ee0fa55d1178cac5f38f4465a1ddf30490 (patch) | |
tree | 196b2ebeae359aac5824a90781dc7fab5c251d2b /view.c | |
parent | 35e65ea64095d4a2ef305b20aac9d72624af514c (diff) | |
download | dwm-6ba400ee0fa55d1178cac5f38f4465a1ddf30490.tar.gz |
yet another consistency fix of dwm
Diffstat (limited to 'view.c')
-rw-r--r-- | view.c | 2 |
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(); |