Improved input change update responsiveness

This commit is contained in:
n1474335 2022-07-11 13:43:19 +01:00
parent 157dacb3a5
commit 5c8aac5572
5 changed files with 20 additions and 49 deletions

View file

@ -728,10 +728,11 @@ class App {
* @param {event} e
*/
stateChange(e) {
this.progress = 0;
this.autoBake();
this.updateTitle(true, null, true);
debounce(function() {
this.progress = 0;
this.autoBake();
this.updateTitle(true, null, true);
}, 20, "stateChange", this, [])();
}