Fixing bug in model magnification

This commit is contained in:
Anton Arbring
2015-06-25 20:07:21 -04:00
parent c7a3048dda
commit 4e72e248c3
3 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ ModelGeometry::ModelGeometry(const ghoul::Dictionary& dictionary)
success = dictionary.getValue(keySize, _magnification);
if (!success)
_magnification = 4; // if not set, models will be 1:1000, feel free to change @AA
_magnification = 0; // if not set, models will be 1:1 (earlier 1:1000) @AA
success = dictionary.getValue(keyObjFile, _file);
if (!success) {