Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorPhilipp Oeser <info@graphics-engineer.com>2018-05-09 15:26:47 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2018-05-09 15:26:47 +0300
commit34c474e695416bd07efae3502101ca549890c7bb (patch)
tree407fbfcd1f2e3d18a16055c5ba81880f2d0ff454 /source
parentf3efa9e15f58d98087796feb263680deb5cd7047 (diff)
Fix T54997: simple typo in property description
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/physics/particle_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index 2f18a0cd4c0..c05bf4f7dea 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -2609,7 +2609,7 @@ void PARTICLE_OT_remove_doubles(wmOperatorType *ot)
/* properties */
RNA_def_float(ot->srna, "threshold", 0.0002f, 0.0f, FLT_MAX,
- "Merge Distance", "Threshold distance withing which particles are removed", 0.00001f, 0.1f);
+ "Merge Distance", "Threshold distance within which particles are removed", 0.00001f, 0.1f);
}