Răsfoiți Sursa

Editor: Fix ctor call of Command.

Mugen87 6 ani în urmă
părinte
comite
6509b0076a
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      editor/js/commands/SetColorCommand.js

+ 1 - 1
editor/js/commands/SetColorCommand.js

@@ -13,7 +13,7 @@
 
 var SetColorCommand = function ( editor, object, attributeName, newValue ) {
 
-	Command.call( editor, this );
+	Command.call( this, editor );
 
 	this.type = 'SetColorCommand';
 	this.name = 'Set ' + attributeName;