Fix T73433: Transform options (Affect Only) tooltips are confusing

Change these to be more descriptive and understandable.
This commit is contained in:
William Reynish 2020-01-28 23:03:29 +01:00
parent 7b5f09c068
commit bcbd9009e7
Notes: blender-bot 2023-02-14 01:35:49 +01:00
Referenced by issue #73433, Transform options (Affect Only) tooltips are confusing
1 changed files with 7 additions and 3 deletions

View File

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