Browse Source

Change auto to default in cursor css settings.

Jason Knight 2 years ago
parent
commit
c2d7f7fb4c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      platform/web/js/libs/library_godot_display.js

+ 3 - 3
platform/web/js/libs/library_godot_display.js

@@ -174,7 +174,7 @@ const GodotDisplayCursor = {
 	$GodotDisplayCursor__deps: ['$GodotOS', '$GodotConfig'],
 	$GodotDisplayCursor__deps: ['$GodotOS', '$GodotConfig'],
 	$GodotDisplayCursor__postset: 'GodotOS.atexit(function(resolve, reject) { GodotDisplayCursor.clear(); resolve(); });',
 	$GodotDisplayCursor__postset: 'GodotOS.atexit(function(resolve, reject) { GodotDisplayCursor.clear(); resolve(); });',
 	$GodotDisplayCursor: {
 	$GodotDisplayCursor: {
-		shape: 'auto',
+		shape: 'default',
 		visible: true,
 		visible: true,
 		cursors: {},
 		cursors: {},
 		set_style: function (style) {
 		set_style: function (style) {
@@ -185,7 +185,7 @@ const GodotDisplayCursor = {
 			let css = shape;
 			let css = shape;
 			if (shape in GodotDisplayCursor.cursors) {
 			if (shape in GodotDisplayCursor.cursors) {
 				const c = GodotDisplayCursor.cursors[shape];
 				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) {
 			if (GodotDisplayCursor.visible) {
 				GodotDisplayCursor.set_style(css);
 				GodotDisplayCursor.set_style(css);
@@ -193,7 +193,7 @@ const GodotDisplayCursor = {
 		},
 		},
 		clear: function () {
 		clear: function () {
 			GodotDisplayCursor.set_style('');
 			GodotDisplayCursor.set_style('');
-			GodotDisplayCursor.shape = 'auto';
+			GodotDisplayCursor.shape = 'default';
 			GodotDisplayCursor.visible = true;
 			GodotDisplayCursor.visible = true;
 			Object.keys(GodotDisplayCursor.cursors).forEach(function (key) {
 			Object.keys(GodotDisplayCursor.cursors).forEach(function (key) {
 				URL.revokeObjectURL(GodotDisplayCursor.cursors[key]);
 				URL.revokeObjectURL(GodotDisplayCursor.cursors[key]);