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:03:29 +0300
committerWilliam Reynish <billrey@me.com>2020-01-29 01:03:29 +0300
commitbcbd9009e73ecc02bee04fa85ba4c2cbcac358b4 (patch)
treecc9cc6eea6310cd5ba49d27f387876c0c3ab0cbd /source/blender/makesrna/intern/rna_scene.c
parent7b5f09c0685090bf7282f254e95647eed35da183 (diff)
Fix T73433: Transform options (Affect Only) tooltips are confusing
Change these to be more descriptive and understandable.
Diffstat (limited to 'source/blender/makesrna/intern/rna_scene.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 7d35a1c5e2a..5b7f4639421 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2963,17 +2963,21 @@ static void rna_def_tool_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_transform_pivot_point_align", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "transform_flag", SCE_XFORM_AXIS_ALIGN);
RNA_def_property_ui_text(
- prop, "Only Locations", "Manipulate origins (object, pose and weight paint mode only)");
+ prop,
+ "Only Locations",
+ "Only transform object locations, without affecting rotation or scaling");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
prop = RNA_def_property(srna, "use_transform_data_origin", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "transform_flag", SCE_XFORM_DATA_ORIGIN);
- RNA_def_property_ui_text(prop, "Transform Origins", "Manipulate object data");
+ RNA_def_property_ui_text(
+ prop, "Transform Origins", "Transform object origins, while leaving the shape in place");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
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", "Don't transform children");
+ RNA_def_property_ui_text(
+ prop, "Transform Parents", "Transform the parents, leaving the children om place");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
prop = RNA_def_property(srna, "use_mesh_automerge", PROP_BOOLEAN, PROP_NONE);