Daniel 10 years ago
parent
commit
7291565205
1 changed files with 2 additions and 2 deletions
  1. 2 2
      editor/js/CmdSetGeometry.js

+ 2 - 2
editor/js/CmdSetGeometry.js

@@ -73,8 +73,8 @@ CmdSetGeometry.prototype = {
 		this.oldGeometryJSON = json.oldGeometryJSON;
 		this.oldGeometryJSON = json.oldGeometryJSON;
 		this.newGeometryJSON = json.newGeometryJSON;
 		this.newGeometryJSON = json.newGeometryJSON;
 
 
-		this.oldGeometry = this.parseGeometry( this.oldGeometryJSON );
-		this.newGeometry = this.parseGeometry( this.newGeometryJSON );
+		this.oldGeometry = parseGeometry( this.oldGeometryJSON );
+		this.newGeometry = parseGeometry( this.newGeometryJSON );
 
 
 		function parseGeometry ( data ) {
 		function parseGeometry ( data ) {