Browse Source

Editor.js : Clean up

heqiang 4 years ago
parent
commit
596a6c18fd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      editor/js/Editor.js

+ 2 - 2
editor/js/Editor.js

@@ -554,7 +554,7 @@ Editor.prototype = {
 
 		}
 
-		this.select( this.scene.getObjectById( id, true ) );
+		this.select( this.scene.getObjectById( id ) );
 
 	},
 
@@ -592,7 +592,7 @@ Editor.prototype = {
 
 	focusById: function ( id ) {
 
-		this.focus( this.scene.getObjectById( id, true ) );
+		this.focus( this.scene.getObjectById( id ) );
 
 	},