From e42b19d3241d6540ad88295ac868bd7b4add8ef4 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Wed, 20 Sep 2017 01:16:15 +0100 Subject: [PATCH] Removed excess auto-baking --- src/web/OperationsWaiter.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/web/OperationsWaiter.js b/src/web/OperationsWaiter.js index 168cff9e..087eaa1c 100755 --- a/src/web/OperationsWaiter.js +++ b/src/web/OperationsWaiter.js @@ -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(); };