diff --git a/src/component/overlay.vue b/src/component/overlay.vue index 9efaf72d..5c5ee7aa 100644 --- a/src/component/overlay.vue +++ b/src/component/overlay.vue @@ -98,11 +98,11 @@ get cursor(): string { if (!this.isControling || !this.cursorImage) { - return 'auto' + return 'default' } const { uri, x, y } = this.cursorImage - return 'url(' + uri + ') ' + x + ' ' + y + ', auto' + return 'url(' + uri + ') ' + x + ' ' + y + ', default' } mounted() {