mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
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:
parent
3dc57c4a4a
commit
a9f8dac656
5 changed files with 77 additions and 55 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue