Fix status messages for baking

This commit is contained in:
j433866 2019-05-01 15:19:01 +01:00
parent 02bda3250b
commit 1cedc94652
3 changed files with 10 additions and 5 deletions

View file

@ -83,8 +83,7 @@ class OutputWaiter {
const newOutput = {
data: null,
inputNum: inputNum,
// statusMessage: `Input ${inputNum} has not been baked yet.`,
statusMessage: "",
statusMessage: `Input ${inputNum} has not been baked yet.`,
error: null,
status: "inactive"
};
@ -356,6 +355,9 @@ class OutputWaiter {
if (value) {
this.manager.controls.hideStaleIndicator();
// Don't add the bombe if it's already there!
if (animation.children.length > 0) return;
// Start a timer to add the Bombe to the DOM just before we make it
// visible so that there is no stuttering
this.appendBombeTimeout = setTimeout(function() {