mirror of
https://github.com/xibyte/jsketcher
synced 2026-02-11 18:03:44 +01:00
fix sketchFace action
This commit is contained in:
parent
a55c2d7768
commit
e5c982e5e0
1 changed files with 2 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue