Fix stepping.

Move stepping logic into App.
Change toggleBakeButtonFunction to use a str instead of booleans.
Tidy up handleLoaderMessage in InputWaiter.
This commit is contained in:
j433866 2019-07-02 12:23:46 +01:00
parent 3dc57c4a4a
commit a9f8dac656
5 changed files with 77 additions and 55 deletions

View file

@ -233,7 +233,9 @@ class OutputWaiter {
if (!this.outputExists(inputNum)) return;
this.outputs[inputNum].progress = progress;
this.manager.tabs.updateOutputTabProgress(inputNum, progress, total);
if (progress !== false) {
this.manager.tabs.updateOutputTabProgress(inputNum, progress, total);
}
}