summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorOmicron <omicron666.dev@gmail.com>2018-11-29 13:12:09 +0100
committerGitHub <noreply@github.com>2018-11-29 13:12:09 +0100
commit464e294c8f9e39ae563f5076f83804f3546d18fe (patch)
tree4909cf4f9f9f49c17157ea777679c997ffa80749 /scene
parent5b8dde4b4a5a930e08da51e07ec87f43e5bd7b36 (diff)
Fixes typo in source string sent to translation.
no mesh has ~~not~~ been assigned
Diffstat (limited to 'scene')
-rw-r--r--scene/3d/cpu_particles.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/cpu_particles.cpp b/scene/3d/cpu_particles.cpp
index 1269cef7c2..698866fd58 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 ||