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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-23 14:39:35 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-23 14:52:51 +0300
commit7c5e174871e83dfe874da491613a65fbf405099e (patch)
tree4551032a1fd0dfefacf6bb01e429c8f607fb5c54 /source/blender/makesrna/intern/rna_layer.c
parent37b947c7ef69e62fa13b795d2b9de0e030cdfd7c (diff)
Fix T55160: crash renaming view layer.
Diffstat (limited to 'source/blender/makesrna/intern/rna_layer.c')
-rw-r--r--source/blender/makesrna/intern/rna_layer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_layer.c b/source/blender/makesrna/intern/rna_layer.c
index 10739150a40..8dc4f8c5e7b 100644
--- a/source/blender/makesrna/intern/rna_layer.c
+++ b/source/blender/makesrna/intern/rna_layer.c
@@ -305,7 +305,7 @@ void RNA_def_view_layer(BlenderRNA *brna)
PropertyRNA *prop;
srna = RNA_def_struct(brna, "ViewLayer", NULL);
- RNA_def_struct_ui_text(srna, "Render Layer", "Render layer");
+ RNA_def_struct_ui_text(srna, "View Layer", "View layer");
RNA_def_struct_ui_icon(srna, ICON_RENDER_RESULT);
RNA_def_struct_path_func(srna, "rna_ViewLayer_path");
RNA_def_struct_idprops_func(srna, "rna_ViewLayer_idprops");