lt->arrange in mfact

This commit is contained in:
Anselm R Garbe 2008-05-31 17:05:28 +01:00
parent d589f7679a
commit 92f3c181c3
1 changed files with 1 additions and 1 deletions

2
dwm.c
View File

@ -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)