diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-12 15:26:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-12 15:26:46 +0100 |
commit | ad6652c08e0f6a41832f7a9f8b2f8fce2433a2b3 (patch) | |
tree | 3d45bf9cd1c89093520a31fc1e64d33e4bae66ce | |
parent | 03aaa1480de3154a855190caadb16a155aac37fa (diff) | |
parent | 353617b202e8a20a692c3d26ca40928d98e9342c (diff) |
Merge pull request #55860 from rcorre/mesh_typo
-rw-r--r-- | editor/plugins/mesh_instance_3d_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/mesh_instance_3d_editor_plugin.cpp b/editor/plugins/mesh_instance_3d_editor_plugin.cpp index 7a85c5167b..2ce13b717a 100644 --- a/editor/plugins/mesh_instance_3d_editor_plugin.cpp +++ b/editor/plugins/mesh_instance_3d_editor_plugin.cpp @@ -398,7 +398,7 @@ void MeshInstance3DEditor::_create_outline_mesh() { } if (mesh->get_surface_count() == 0) { - err_dialog->set_text(TTR("Mesh has not surface to create outlines from.")); + err_dialog->set_text(TTR("Mesh has no surface to create outlines from.")); err_dialog->popup_centered(); return; } else if (mesh->get_surface_count() == 1 && mesh->surface_get_primitive_type(0) != Mesh::PRIMITIVE_TRIANGLES) { |