Skip to content

Commit

Permalink
Switched to use getValueOrUndefined
Browse files Browse the repository at this point in the history
  • Loading branch information
cttibbetts committed Nov 4, 2015
1 parent b4d11e8 commit bdcf991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/DataSources/ModelVisualizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ define([
model.show = true;
model.scale = Property.getValueOrDefault(modelGraphics._scale, time, defaultScale);
model.minimumPixelSize = Property.getValueOrDefault(modelGraphics._minimumPixelSize, time, defaultMinimumPixelSize);
model.maximumScale = Property.getValueOrDefault(modelGraphics._maximumScale, time, null);
model.maximumScale = Property.getValueOrUndefined(modelGraphics._maximumScale, time);
model.modelMatrix = Matrix4.clone(modelMatrix, model.modelMatrix);
}
return true;
Expand Down

0 comments on commit bdcf991

Please # to comment.