[Bf-blender-cvs] [6a0c31af8a0] master: improve tooltip of ViewLayer.use

Philipp Oeser noreply at git.blender.org
Mon May 6 14:28:25 CEST 2019


Commit: 6a0c31af8a07e51d2710fb3ab544fe45fd3c1dbb
Author: Philipp Oeser
Date:   Mon May 6 14:24:33 2019 +0200
Branches: master
https://developer.blender.org/rB6a0c31af8a07e51d2710fb3ab544fe45fd3c1dbb

improve tooltip of ViewLayer.use

thx @Zoot (Gavin Scott) for spotting and providing better wording

Fixes T64157

===================================================================

M	source/blender/makesrna/intern/rna_layer.c

===================================================================

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);



More information about the Bf-blender-cvs mailing list