Browse Source

fix

master
Anselm R Garbe 16 years ago
parent
commit
6e9387793b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      dwm.c

+ 1
- 1
dwm.c View File

@ -1306,7 +1306,7 @@ void
setmfact(const void *arg) {
double d = *((double*) arg);
if(!d || lt->arrange)
if(!d || !lt->arrange)
return;
d = d < 1.0 ? d + mfact : d - 1.0;
if(d < 0.1 || d > 0.9)


Loading…
Cancel
Save