aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-05-31 18:05:28 +0200
committerAnselm R Garbe <garbeam@gmail.com>2008-05-31 18:05:28 +0200
commit92f3c181c3c3f106361a9c9f7e354ce29ae37e62 (patch)
treee8e4c9cc94921743d7ce639cd586a5b093d02392 /dwm.c
parentd589f7679a56b114a2594b5cf49e5312d8420efb (diff)
downloaddwm-92f3c181c3c3f106361a9c9f7e354ce29ae37e62.tar.zst
lt->arrange in mfact
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 0dfb94e..4a826d9 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1306,7 +1306,7 @@ void
setmfact(const void *arg) {
double d = *((double*) arg);
- if(!d || lt->arrange != tile)
+ if(!d || lt->arrange)
return;
d = d < 1.0 ? d + mfact : d - 1.0;
if(d < 0.1 || d > 0.9)