Added 'Show all' button to output file overlay

This commit is contained in:
n1474335 2019-12-13 12:59:59 +00:00
parent 974ce1fd12
commit 813a151524
6 changed files with 51 additions and 8 deletions

View file

@ -767,7 +767,9 @@ class InputWaiter {
// and manually fire inputChange()
inputText.value = val;
inputText.setSelectionRange(selStart + pastedData.length, selStart + pastedData.length);
this.debounceInputChange(e);
// Don't debounce here otherwise the keyup event for the Ctrl key will cancel an autobake
// (at least for large inputs)
this.inputChange(e, true);
}
}