always save inactive cursor.

This commit is contained in:
Miroslav Šedivý 2021-10-26 22:55:38 +02:00
parent cd8d0da96a
commit 077105332f

View File

@ -263,7 +263,9 @@
onMouseMove(e: MouseEvent) { onMouseMove(e: MouseEvent) {
if (this.isControling) { if (this.isControling) {
this.sendMousePos(e) this.sendMousePos(e)
} else if (this.inactiveCursors) { }
if (this.inactiveCursors) {
this.saveInactiveMousePos(e) this.saveInactiveMousePos(e)
} }
} }