n1474335 7 лет назад
Родитель
Сommit
e42b19d324
1 измененных файлов с 0 добавлено и 2 удалено
  1. 0 2
      src/web/OperationsWaiter.js

+ 0 - 2
src/web/OperationsWaiter.js

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