setmfact should not have any effect if in floating layout 00c28a7e
Anselm R Garbe · 2008-03-24 14:31 1 file(s) · +1 −1
dwm.c +1 −1
1467 1467
setmfact(const char *arg) {
1468 1468
	double delta;
1469 1469
1470 -
	if(!arg)
1470 +
	if(!arg || lt->isfloating)
1471 1471
		return;
1472 1472
	delta = strtod(arg, NULL);
1473 1473
	if(arg[0] == '-' || arg[0] == '+') {