use default cursor.

This commit is contained in:
Miroslav Šedivý 2022-05-29 20:22:28 +02:00
parent 9c20591e3d
commit 3b6431ced2

View File

@ -98,11 +98,11 @@
get cursor(): string { get cursor(): string {
if (!this.isControling || !this.cursorImage) { if (!this.isControling || !this.cursorImage) {
return 'auto' return 'default'
} }
const { uri, x, y } = this.cursorImage const { uri, x, y } = this.cursorImage
return 'url(' + uri + ') ' + x + ' ' + y + ', auto' return 'url(' + uri + ') ' + x + ' ' + y + ', default'
} }
mounted() { mounted() {