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:
authorWilliam Reynish <billrey@me.com>2019-03-21 18:31:46 +0300
committerWilliam Reynish <billrey@me.com>2019-03-21 18:31:46 +0300
commitad8566db9b9e4e2d031100508808ce562f0934fd (patch)
tree267fc9aaac17a90e3fe05ab44f15a0060ad78d51 /source/blender/makesrna/intern/rna_object_force.c
parenta3b9f20b1b6fb4989cfafd63e003729ba440bfc9 (diff)
UI: Fix wrong spelling
Effect vs Affect
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_force.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_force.c4
1 files changed, 2 insertions, 2 deletions
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);