From 50cb8013ebf8e421a16428756dd869ab844b41f6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 5 Oct 2018 09:41:48 +1000 Subject: UI: rename overlay: Ornaments -> Extras See: T56648 --- source/blender/makesrna/intern/rna_space.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source') 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); -- cgit v1.2.3