Przeglądaj źródła

[macOS] Fix custom mouse cursor not set after mouse mode change.

bruvzg 4 lat temu
rodzic
commit
f7797bf1b3
1 zmienionych plików z 6 dodań i 0 usunięć
  1. 6 0
      platform/osx/display_server_osx.mm

+ 6 - 0
platform/osx/display_server_osx.mm

@@ -2120,6 +2120,12 @@ void DisplayServerOSX::mouse_set_mode(MouseMode p_mode) {
 	ignore_warp = true;
 	warp_events.clear();
 	mouse_mode = p_mode;
+
+	if (mouse_mode == MOUSE_MODE_VISIBLE || mouse_mode == MOUSE_MODE_CONFINED) {
+		CursorShape p_shape = cursor_shape;
+		cursor_shape = DisplayServer::CURSOR_MAX;
+		cursor_set_shape(p_shape);
+	}
 }
 
 DisplayServer::MouseMode DisplayServerOSX::mouse_get_mode() const {