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
|
|
@ -222,9 +222,9 @@ void MultiMeshEditor::_browsed(const NodePath &p_path) {
|
|||
NodePath path = node->get_path_to(get_node(p_path));
|
||||
|
||||
if (browsing_source) {
|
||||
mesh_source->set_text(path);
|
||||
mesh_source->set_text(String(path));
|
||||
} else {
|
||||
surface_source->set_text(path);
|
||||
surface_source->set_text(String(path));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue