From 3f8830ec50ba349bed473fd55f7cbe77d266e0fa Mon Sep 17 00:00:00 2001 From: Raffaele Picca Date: Fri, 1 Jul 2022 20:46:58 +0200 Subject: [PATCH] Fix default cursor in html5 export. --- platform/javascript/os_javascript.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/javascript/os_javascript.cpp b/platform/javascript/os_javascript.cpp index 8e8ed77d17b..991b7a65147 100644 --- a/platform/javascript/os_javascript.cpp +++ b/platform/javascript/os_javascript.cpp @@ -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: