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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-01 17:07:25 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-01 18:14:06 +0300
commit0706b410bd05cf9448e00b55e59e48a56682f84d (patch)
tree9f871bcde38c6b805bd40aff1cbe7e721ac647a0 /source
parenteef18d39cbf0e50ba18d28f52f57689ad0701c16 (diff)
UI: use same "Viewport Display" name for scene/object/material panels.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index 114f8e42006..10a31c9c070 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -2291,7 +2291,7 @@ static void rna_def_object(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_duplicator_for_viewport", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "duplicator_visibility_flag", OB_DUPLI_FLAG_VIEWPORT);
- RNA_def_property_ui_text(prop, "Show Duplicator", "Make duplicator visible in the viewport");
+ RNA_def_property_ui_text(prop, "Display Duplicator", "Make duplicator visible in the viewport");
prop = RNA_def_property(srna, "is_visible", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_funcs(prop, "rna_Object_is_visible_get", NULL);