[Bf-blender-cvs] [b499b24c545] master: UI: Fix typo in tooltip

William Reynish noreply at git.blender.org
Tue Jan 28 23:17:35 CET 2020


Commit: b499b24c54525d637db77514f406b1eccf95bb97
Author: William Reynish
Date:   Tue Jan 28 23:17:32 2020 +0100
Branches: master
https://developer.blender.org/rBb499b24c54525d637db77514f406b1eccf95bb97

UI: Fix typo in tooltip

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

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

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

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



More information about the Bf-blender-cvs mailing list