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:
authorPhilipp Oeser <info@graphics-engineer.com>2019-05-06 15:24:33 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-05-06 15:24:33 +0300
commit6a0c31af8a07e51d2710fb3ab544fe45fd3c1dbb (patch)
tree48e259663f073b7efcbd8bf436b9e595a4d9bb25 /source/blender/makesrna/intern/rna_layer.c
parent578ead77f98824ecab169fad232e1a441d3194dc (diff)
improve tooltip of ViewLayer.use
thx @Zoot (Gavin Scott) for spotting and providing better wording Fixes T64157
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 a71adec4e5c..03c507cabd1 100644
--- a/source/blender/makesrna/intern/rna_layer.c
+++ b/source/blender/makesrna/intern/rna_layer.c
@@ -428,7 +428,7 @@ void RNA_def_view_layer(BlenderRNA *brna)
/* layer options */
prop = RNA_def_property(srna, "use", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", VIEW_LAYER_RENDER);
- RNA_def_property_ui_text(prop, "Enabled", "Disable or enable the render layer");
+ RNA_def_property_ui_text(prop, "Enabled", "Enable or disable rendering of this View Layer");
RNA_def_property_update(prop, NC_SCENE | ND_LAYER, NULL);
prop = RNA_def_property(srna, "use_freestyle", PROP_BOOLEAN, PROP_NONE);