UI: Fix typo in tooltip

This commit is contained in:
William Reynish 2020-01-28 23:17:32 +01:00
parent bcbd9009e7
commit b499b24c54
1 changed files with 1 additions and 1 deletions

View File

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