summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorJason Knight <jason@winterpixel.com>2022-10-07 10:53:49 -0600
committerJason Knight <jason@winterpixel.com>2022-10-07 10:53:49 -0600
commitc2d7f7fb4ccb62c9a1130405b7da97626e19b3d9 (patch)
tree49ba6ae5a4cf8e73b8c7d3f2d166ddcd2a237662 /platform
parent1baefceababe8a0d63434a231c3799555a45d8e3 (diff)
Change auto to default in cursor css settings.
Diffstat (limited to 'platform')
-rw-r--r--platform/web/js/libs/library_godot_display.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/web/js/libs/library_godot_display.js b/platform/web/js/libs/library_godot_display.js
index 91cb8e728a..39c8569655 100644
--- a/platform/web/js/libs/library_godot_display.js
+++ b/platform/web/js/libs/library_godot_display.js
@@ -174,7 +174,7 @@ const GodotDisplayCursor = {
$GodotDisplayCursor__deps: ['$GodotOS', '$GodotConfig'],
$GodotDisplayCursor__postset: 'GodotOS.atexit(function(resolve, reject) { GodotDisplayCursor.clear(); resolve(); });',
$GodotDisplayCursor: {
- shape: 'auto',
+ shape: 'default',
visible: true,
cursors: {},
set_style: function (style) {
@@ -185,7 +185,7 @@ const GodotDisplayCursor = {
let css = shape;
if (shape in GodotDisplayCursor.cursors) {
const c = GodotDisplayCursor.cursors[shape];
- css = `url("${c.url}") ${c.x} ${c.y}, auto`;
+ css = `url("${c.url}") ${c.x} ${c.y}, default`;
}
if (GodotDisplayCursor.visible) {
GodotDisplayCursor.set_style(css);
@@ -193,7 +193,7 @@ const GodotDisplayCursor = {
},
clear: function () {
GodotDisplayCursor.set_style('');
- GodotDisplayCursor.shape = 'auto';
+ GodotDisplayCursor.shape = 'default';
GodotDisplayCursor.visible = true;
Object.keys(GodotDisplayCursor.cursors).forEach(function (key) {
URL.revokeObjectURL(GodotDisplayCursor.cursors[key]);