Procházet zdrojové kódy

Editor: Fix ctor call of Command.

Mugen87 před 6 roky
rodič
revize
6509b0076a
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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;