From 7dd802e66d4574c1ada2fcccf999b30e0b19d9ae Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Wed, 27 Feb 2019 19:02:22 +0100 Subject: [PATCH] UI: Rename 'Object' to 'Object Velocity' in particle settings --- source/blender/makesrna/intern/rna_particle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);