diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index dc902564906..d2d10efaf3b 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -6191,7 +6191,9 @@ EditorNode::EditorNode() { // Only if no touchscreen ui hint, disable emulation just in case. Input::get_singleton()->set_emulate_touch_from_mouse(false); } - DisplayServer::get_singleton()->cursor_set_custom_image(Ref()); + if (DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_CUSTOM_CURSOR_SHAPE)) { + DisplayServer::get_singleton()->cursor_set_custom_image(Ref()); + } } SceneState::set_disable_placeholders(true);