fix sketchFace action

This commit is contained in:
Val Erastov 2016-12-25 03:08:45 -08:00
parent a55c2d7768
commit e5c982e5e0

View file

@ -160,7 +160,8 @@ App.prototype.sketchSelectedFace = function() {
if (this.viewer.selectionMgr.selection.length == 0) {
return;
}
var polyFace = this.viewer.selectionMgr.selection[0];
const polyFace = this.viewer.selectionMgr.selection[0];
this.sketchFace(polyFace);
};
App.prototype.sketchFace = function(polyFace) {