diff options
author | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-13 19:22:51 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-13 19:22:51 +0200 |
commit | e4ad3205995865f53b806a912bc7beb44fb90598 (patch) | |
tree | f3b183866ceda4a56e9af056164af0e13ea4c4f2 /tile.c | |
parent | a200c39635dcbd1cb1109353f9c2acab983c8606 (diff) | |
download | dwm-e4ad3205995865f53b806a912bc7beb44fb90598.tar.gz |
small bugfix
Diffstat (limited to 'tile.c')
-rw-r--r-- | tile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tile.c b/tile.c index b7cc100..e1c68f8 100644 --- a/tile.c +++ b/tile.c @@ -12,7 +12,7 @@ void addtomwfact(const char *arg) { double delta; - if(isarrange(tile)) + if(!isarrange(tile)) return; /* arg handling, manipulate mwfact */ |