mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Fix cursor sometimes not being moved into mathjax editor (#1737)
This commit is contained in:
parent
7ab79aad8b
commit
9029c5f497
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ export function checkHandles(): void {
|
||||||
const selection = getSelection(handle)!;
|
const selection = getSelection(handle)!;
|
||||||
|
|
||||||
if (selection.rangeCount === 0) {
|
if (selection.rangeCount === 0) {
|
||||||
return;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
checkWhetherMovingIntoHandle(selection, handle);
|
checkWhetherMovingIntoHandle(selection, handle);
|
||||||
|
|
Loading…
Reference in a new issue