浏览代码

Fix default cursor in html5 export.

Raffaele Picca 3 年之前
父节点
当前提交
3f8830ec50
共有 1 个文件被更改,包括 1 次插入1 次删除
  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) {
 		case OS::CURSOR_ARROW:
 		default:
-			return "auto";
+			return "default";
 		case OS::CURSOR_IBEAM:
 			return "text";
 		case OS::CURSOR_POINTING_HAND: