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:
authorCampbell Barton <ideasman42@gmail.com>2018-12-07 00:49:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-07 00:49:01 +0300
commit6aad5de58b916da8a10c32998af4a9e95acdc49f (patch)
treec6abe36e557c7231db6cefea89ec7fcf183ada49 /source/blender/makesrna/intern/rna_space.c
parent234c1129715a022b5ff95ed3dcd8e275e3661f8c (diff)
Docs: hint to why we have option to toggle bones
Without this, it might seem redundant since there is an option to toggle armature object display.
Diffstat (limited to 'source/blender/makesrna/intern/rna_space.c')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 6e01d326767..2c9823daa7a 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2749,7 +2749,7 @@ static void rna_def_space_view3d_overlay(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_bones", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "overlay.flag", V3D_OVERLAY_HIDE_BONES);
- RNA_def_property_ui_text(prop, "Show Bones", "Display bones");
+ RNA_def_property_ui_text(prop, "Show Bones", "Display bones (disable to show motion paths only)");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
prop = RNA_def_property(srna, "show_face_orientation", PROP_BOOLEAN, PROP_NONE);