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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-10-05 02:41:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-05 02:49:09 +0300
commit50cb8013ebf8e421a16428756dd869ab844b41f6 (patch)
treec43e7314d0e9a823f6355720b11c85d58bc02797 /source
parent3a1e9b9997e33c059d08138da707ac16490fddf7 (diff)
UI: rename overlay: Ornaments -> Extras
See: T56648
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_space.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 6fdfd06a9a0..c2224fe767b 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2716,9 +2716,9 @@ static void rna_def_space_view3d_overlay(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Show Text", "Display overlay text");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
- prop = RNA_def_property(srna, "show_ornaments", PROP_BOOLEAN, PROP_NONE);
+ prop = RNA_def_property(srna, "show_extras", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "overlay.flag", V3D_OVERLAY_HIDE_OBJECT_XTRAS);
- RNA_def_property_ui_text(prop, "Ornaments", "Object details, including empty wire, cameras and other extras");
+ RNA_def_property_ui_text(prop, "Extras", "Object details, including empty wire, cameras and other visual guides");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
prop = RNA_def_property(srna, "show_bones", PROP_BOOLEAN, PROP_NONE);