1
0
Fork 0

Turn off the zoom limit for now. Folks don't like it.

This commit is contained in:
andy 2003-12-09 17:02:00 +00:00
parent 3834bc4f96
commit 6c097f252a

View file

@ -89,7 +89,7 @@ decrease = func {
calcMul();
val = fovProp.getValue() / mul;
if(val == min) { return; }
if(val < min) { val = min }
#if(val < min) { val = min } # Comment out for now.
fovProp.setDoubleValue(val);
popup(val);
}