[Bf-blender-cvs] [ad8566db9b9] master: UI: Fix wrong spelling

William Reynish noreply at git.blender.org
Thu Mar 21 16:31:47 CET 2019


Commit: ad8566db9b9e4e2d031100508808ce562f0934fd
Author: William Reynish
Date:   Thu Mar 21 16:31:46 2019 +0100
Branches: master
https://developer.blender.org/rBad8566db9b9e4e2d031100508808ce562f0934fd

UI: Fix wrong spelling

Effect vs Affect

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

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

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

diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index 90f6ac92d6b..77934b721c5 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -1359,12 +1359,12 @@ static void rna_def_field(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "apply_to_location", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", PFIELD_DO_LOCATION);
-	RNA_def_property_ui_text(prop, "Location", "Effect particles' location");
+	RNA_def_property_ui_text(prop, "Location", "Affect particles' location");
 	RNA_def_property_update(prop, 0, "rna_FieldSettings_update");
 
 	prop = RNA_def_property(srna, "apply_to_rotation", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", PFIELD_DO_ROTATION);
-	RNA_def_property_ui_text(prop, "Rotation", "Effect particles' dynamic rotation");
+	RNA_def_property_ui_text(prop, "Rotation", "Affect particles' dynamic rotation");
 	RNA_def_property_update(prop, 0, "rna_FieldSettings_update");
 
 	prop = RNA_def_property(srna, "use_absorption", PROP_BOOLEAN, PROP_NONE);



More information about the Bf-blender-cvs mailing list