Make conversions from NodePath to String explicit.

This commit is contained in:
Lukas Tenbrink 2025-06-11 16:19:23 +02:00
parent 51b0379e55
commit e2931a5c19
39 changed files with 99 additions and 99 deletions

View file

@ -51,7 +51,7 @@ void _add_nodes_suggestions(const Node *p_base, const Node *p_node, PackedString
return;
}
String path_relative_to_orig = p_base->get_path_to(p_node);
String path_relative_to_orig = String(p_base->get_path_to(p_node));
r_suggestions.push_back(quoted(path_relative_to_orig));