Prechádzať zdrojové kódy

Merge pull request #62608 from RPicster/3.x-default-cursor-fix

[3.x] Default cursor fix in html5 export.
Fabio Alessandrelli 3 rokov pred
rodič
commit
e1447ec823
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      platform/javascript/os_javascript.cpp

+ 1 - 1
platform/javascript/os_javascript.cpp

@@ -325,7 +325,7 @@ static const char *godot2dom_cursor(OS::CursorShape p_shape) {
 	switch (p_shape) {
 	switch (p_shape) {
 		case OS::CURSOR_ARROW:
 		case OS::CURSOR_ARROW:
 		default:
 		default:
-			return "auto";
+			return "default";
 		case OS::CURSOR_IBEAM:
 		case OS::CURSOR_IBEAM:
 			return "text";
 			return "text";
 		case OS::CURSOR_POINTING_HAND:
 		case OS::CURSOR_POINTING_HAND: