You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Make conversions from NodePath to String explicit.
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user