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
diff options
context:
space:
mode:
authorPablo Vazquez <contact@pablovazquez.art>2019-02-27 21:02:22 +0300
committerPablo Vazquez <contact@pablovazquez.art>2019-02-27 21:50:34 +0300
commit7dd802e66d4574c1ada2fcccf999b30e0b19d9ae (patch)
treeaed47b71fe74eaa6fe50b00742ebf4c680d2bed4 /source/blender/makesrna
parent5e039c29c83d92cfe78c6d249a74a468c499660e (diff)
UI: Rename 'Object' to 'Object Velocity' in particle settings
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_particle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_particle.c b/source/blender/makesrna/intern/rna_particle.c
index 1f2ec6da75a..ee9cbb8faad 100644
--- a/source/blender/makesrna/intern/rna_particle.c
+++ b/source/blender/makesrna/intern/rna_particle.c
@@ -2681,7 +2681,7 @@ static void rna_def_particle_settings(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "obfac");
RNA_def_property_range(prop, -200.0f, 200.0f);
RNA_def_property_ui_range(prop, -1.0f, 1.0f, 0.1, 3);
- RNA_def_property_ui_text(prop, "Object", "Let the object give the particle a starting velocity");
+ RNA_def_property_ui_text(prop, "Object Velocity", "Let the object give the particle a starting velocity");
RNA_def_property_update(prop, 0, "rna_Particle_reset");
prop = RNA_def_property(srna, "factor_random", PROP_FLOAT, PROP_NONE);