Skip to content

Commit 9028761

Browse files
committed
Loading message fade and cancelBake bugfix
1 parent f6b52b7 commit 9028761

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/web/ControlsWaiter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ ControlsWaiter.prototype.bakeClick = function() {
8181
if (document.getElementById("bake").textContent.indexOf("Bake") > 0) {
8282
this.app.bake();
8383
} else {
84-
this.app.cancelBake();
84+
this.manager.worker.cancelBake();
8585
}
8686
};
8787

src/web/stylesheets/layout/_io.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
margin: 0;
7373
background-color: var(--primary-background-colour);
7474
visibility: hidden;
75-
opacity: 0;
75+
opacity: 0;
7676

7777
transition: all 0.5s ease;
7878
}
@@ -117,4 +117,6 @@
117117
line-height: var(--primary-line-height);
118118
color: var(--primary-font-colour);
119119
top: 50%;
120+
121+
transition: all 0.5s ease;
120122
}

0 commit comments

Comments
 (0)