Преглед на файлове

Editor: Fix ctor call of Command.

Mugen87 преди 6 години
родител
ревизия
6509b0076a
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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;