stopping the words from jumping to the next line

This commit is contained in:
Jack 2020-10-28 23:41:31 +00:00
parent a3f61e1167
commit a416e24d64

View file

@ -4667,6 +4667,13 @@ $(document).keydown(function (event) {
} else {
activeWordJumped = false;
}
if (activeWordJumped) {
currentInput = currentInput.slice(0, -1);
compareInput(!config.blindMode);
activeWordJumped = false;
}
// console.timeEnd("offcheck2");
if (config.keymapMode === "react") {