From 077105332f509a64f13781df6ff9057e31d46922 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Tue, 26 Oct 2021 22:55:38 +0200 Subject: [PATCH] always save inactive cursor. --- src/component/overlay.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/component/overlay.vue b/src/component/overlay.vue index 6c6a0c3e..3c3f5f5c 100644 --- a/src/component/overlay.vue +++ b/src/component/overlay.vue @@ -263,7 +263,9 @@ onMouseMove(e: MouseEvent) { if (this.isControling) { this.sendMousePos(e) - } else if (this.inactiveCursors) { + } + + if (this.inactiveCursors) { this.saveInactiveMousePos(e) } }