Skip to content

Commit

Permalink
Bug workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
Egil Moeller committed May 16, 2011
1 parent 57c1316 commit 2a865da
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -56,7 +56,7 @@ dojo.declare("sketchSpaceDesigner.designer.widgets.ColorInput", [dijit.form._For
this.inherited(arguments, [value]);
},
_getValueAttr: function(){
return dojox.color.fromHex(this.inherited(arguments));
return dojox.color.fromHex(this.value); // Somehow inherited(arguments) stopped working, this is a workaround...
},
_onClick: function (event) {
var widget = this;
Expand Down

0 comments on commit 2a865da

Please sign in to comment.