diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-12-03 17:34:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-03 17:34:49 +0100 |
commit | 0dd89a3d9700c2007d110996b6909ac459b4c80c (patch) | |
tree | e946e962740c15084e7fe4b932625b2329f51dab | |
parent | f6732ff1646d116f3754c82e6935f2ddc20d58c8 (diff) | |
parent | 464e294c8f9e39ae563f5076f83804f3546d18fe (diff) |
Merge pull request #24051 from Omicron666/patch-1
Fixes typo in source string sent to translation.
-rw-r--r-- | scene/3d/cpu_particles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/cpu_particles.cpp b/scene/3d/cpu_particles.cpp index 0966a344cc..b07848e02e 100644 --- a/scene/3d/cpu_particles.cpp +++ b/scene/3d/cpu_particles.cpp @@ -217,7 +217,7 @@ String CPUParticles::get_configuration_warning() const { if (!mesh_found) { if (warnings != String()) warnings += "\n"; - warnings += "- " + TTR("Nothing is visible because no mesh has not been assigned."); + warnings += "- " + TTR("Nothing is visible because no mesh has been assigned."); } if (!anim_material_found && (get_param(PARAM_ANIM_SPEED) != 0.0 || get_param(PARAM_ANIM_OFFSET) != 0.0 || |