mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Make conversions from NodePath to String explicit.
This commit is contained in:
parent
51b0379e55
commit
e2931a5c19
39 changed files with 99 additions and 99 deletions
|
|
@ -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));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue