Fixed dispatchEvent call in recipe loading chain.

This commit is contained in:
n1474335 2018-01-25 13:46:06 +00:00
parent 3c669a075e
commit eee8b7db56

View File

@ -488,7 +488,7 @@ App.prototype.setRecipeConfig = function(recipeConfig) {
// Unpause auto bake // Unpause auto bake
this.autoBakePause = false; this.autoBakePause = false;
window.disptchEent(this.manager.statechange); window.dispatchEvent(this.manager.statechange);
}; };