Commit ba6859c1 authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix bug 34280

parent 21144d6e
......@@ -936,6 +936,16 @@ Geometry.prototype=
}
},
CheckCorrect: function(){
if(!this.parent){
return false;
}
if(this.pathLst.length === 0){
return false;
}
return true;
},
AddGuide: function(name, formula, x, y, z)
{
History.Add(new CChangesGeometryAddGuide(this, name, formula, x, y, z));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment