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>2020-01-29 01:17:32 +0300
committerWilliam Reynish <billrey@me.com>2020-01-29 01:17:32 +0300
commitb499b24c54525d637db77514f406b1eccf95bb97 (patch)
tree3ccc0697b583fd23eb4e30f8b7155c97962e5671 /source/blender/makesrna/intern/rna_scene.c
parentbcbd9009e73ecc02bee04fa85ba4c2cbcac358b4 (diff)
UI: Fix typo in tooltip
Diffstat (limited to 'source/blender/makesrna/intern/rna_scene.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 5b7f4639421..262048e55c2 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2977,7 +2977,7 @@ static void rna_def_tool_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_transform_skip_children", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "transform_flag", SCE_XFORM_SKIP_CHILDREN);
RNA_def_property_ui_text(
- prop, "Transform Parents", "Transform the parents, leaving the children om place");
+ prop, "Transform Parents", "Transform the parents, leaving the children in place");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
prop = RNA_def_property(srna, "use_mesh_automerge", PROP_BOOLEAN, PROP_NONE);