UI: Only Origins: Correct tooltip

This commit is contained in:
Aaron Carlisle 2019-06-23 03:57:53 +02:00
parent 589fa691fd
commit 3695513ff7
1 changed files with 1 additions and 1 deletions

View File

@ -2887,7 +2887,7 @@ 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 Origins", "Manipulate center points (object, pose and weight paint mode only)");
prop, "Only Origins", "Manipulate origins (object, pose and weight paint mode only)");
RNA_def_property_ui_icon(prop, ICON_CENTER_ONLY, 0);
RNA_def_property_update(prop, NC_SCENE, NULL);