From 464e294c8f9e39ae563f5076f83804f3546d18fe Mon Sep 17 00:00:00 2001 From: Omicron Date: Thu, 29 Nov 2018 13:12:09 +0100 Subject: [PATCH] Fixes typo in source string sent to translation. no mesh has ~~not~~ been assigned --- scene/3d/cpu_particles.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/3d/cpu_particles.cpp b/scene/3d/cpu_particles.cpp index 1269cef7c27..698866fd58e 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 ||