Removed excess auto-baking

This commit is contained in:
n1474335 2017-09-20 01:16:15 +01:00
parent 3be370aefa
commit e42b19d324

View File

@ -38,7 +38,6 @@ OperationsWaiter.prototype.searchOperations = function(e) {
selected = this.getSelectedOp(ops);
if (selected > -1) {
this.manager.recipe.addOperation(ops[selected].innerHTML);
this.app.autoBake();
}
}
}
@ -197,7 +196,6 @@ OperationsWaiter.prototype.operationDblclick = function(e) {
const li = e.target;
this.manager.recipe.addOperation(li.textContent);
this.app.autoBake();
};