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

Who said 'commit count'? I only see 'bug fixing' here...
This commit is contained in:
Bastien Montagne 2014-08-19 15:09:34 +02:00
parent 28c6982b37
commit 1a20074acb
Notes: blender-bot 2023-02-14 10:11:54 +01:00
Referenced by issue #41485, No priority: typo in "effectors effect themselves"
1 changed files with 2 additions and 2 deletions

View File

@ -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");