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

[3.x] Default cursor fix in html5 export.
This commit is contained in:
Fabio Alessandrelli 2022-07-02 08:09:31 +02:00 committed by GitHub
commit e1447ec823
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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