ignoring tab if the result is still calculating

This commit is contained in:
Jack 2020-12-07 18:07:58 +00:00
parent 0a42dee46a
commit 29ee871ef6

View file

@ -4281,6 +4281,9 @@ $(document).keydown((event) => {
(event.key == "Tab" && !config.swapEscAndTab) ||
(event.key == "Escape" && config.swapEscAndTab)
) {
if (resultCalculating) {
event.preventDefault();
}
if (
!event.ctrlKey &&
config.quickTab &&