Fix skybox color picker

This commit is contained in:
Ryan Huffman 2015-05-12 09:22:53 -07:00
parent 9f7e90d036
commit e673746d58

View file

@ -742,7 +742,7 @@
onSubmit: function(hsb, hex, rgb, el) { onSubmit: function(hsb, hex, rgb, el) {
$(el).css('background-color', '#'+hex); $(el).css('background-color', '#'+hex);
$(el).colpickHide(); $(el).colpickHide();
emitColorPropertyUpdate('skybox', rgb.r, rgb.g, rgb.b, 'color'); emitColorPropertyUpdate('color', rgb.r, rgb.g, rgb.b, 'skybox');
} }
}); });