Skip to content

Commit

Permalink
Merge pull request #62608 from RPicster/3.x-default-cursor-fix
Browse files Browse the repository at this point in the history
[3.x] Default cursor fix in html5 export.
  • Loading branch information
Faless committed Jul 2, 2022
2 parents ad77a3f + 3f8830e commit e1447ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/javascript/os_javascript.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e1447ec

Please sign in to comment.