[Bf-blender-cvs] [1a20074] master: Fix T41485: No priority: typo in "effectors effect themselves"

Bastien Montagne noreply at git.blender.org
Tue Aug 19 15:10:45 CEST 2014


Commit: 1a20074acb615eddf2ea2c2748d0169a37fb6582
Author: Bastien Montagne
Date:   Tue Aug 19 15:09:34 2014 +0200
Branches: master
https://developer.blender.org/rB1a20074acb615eddf2ea2c2748d0169a37fb6582

Fix T41485: No priority: typo in "effectors effect themselves"

Who said 'commit count'? I only see 'bug fixing' here...

===================================================================

M	source/blender/makesrna/intern/rna_particle.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_particle.c b/source/blender/makesrna/intern/rna_particle.c
index ac187d3..1133113 100644
--- a/source/blender/makesrna/intern/rna_particle.c
+++ b/source/blender/makesrna/intern/rna_particle.c
@@ -2061,7 +2061,7 @@ static void rna_def_particle_settings(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "use_dynamic_rotation", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", PART_ROT_DYN);
 	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
-	RNA_def_property_ui_text(prop, "Dynamic", "Particle rotations are effected by collisions and effectors");
+	RNA_def_property_ui_text(prop, "Dynamic", "Particle rotations are affected by collisions and effectors");
 	RNA_def_property_update(prop, 0, "rna_Particle_reset");
 
 	prop = RNA_def_property(srna, "use_multiply_size_mass", PROP_BOOLEAN, PROP_NONE);
@@ -2113,7 +2113,7 @@ static void rna_def_particle_settings(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "use_self_effect", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", PART_SELF_EFFECT);
-	RNA_def_property_ui_text(prop, "Self Effect", "Particle effectors effect themselves");
+	RNA_def_property_ui_text(prop, "Self Effect", "Particle effectors affect themselves");
 	RNA_def_property_update(prop, 0, "rna_Particle_reset");




More information about the Bf-blender-cvs mailing list