[Bf-blender-cvs] [4835fe0] master: Fix T45062: Make it clear in tooltip that 'double sided' mesh option only affects OpenGL (viewport), and not render engines.

Bastien Montagne noreply at git.blender.org
Sat Jun 13 19:46:49 CEST 2015


Commit: 4835fe06f1f7501440d21a3e3586f591049b1d99
Author: Bastien Montagne
Date:   Sat Jun 13 19:45:45 2015 +0200
Branches: master
https://developer.blender.org/rB4835fe06f1f7501440d21a3e3586f591049b1d99

Fix T45062: Make it clear in tooltip that 'double sided' mesh option only affects
OpenGL (viewport), and not render engines.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index 9b25fbb..d51ec2b 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -3478,7 +3478,7 @@ static void rna_def_mesh(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "show_double_sided", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", ME_TWOSIDED);
-	RNA_def_property_ui_text(prop, "Double Sided", "Render/display the mesh with double or single sided lighting");
+	RNA_def_property_ui_text(prop, "Double Sided", "Display the mesh with double or single sided lighting (OpenGL only)");
 	RNA_def_property_update(prop, 0, "rna_Mesh_update_data");
 
 	prop = RNA_def_property(srna, "texco_mesh", PROP_POINTER, PROP_NONE);




More information about the Bf-blender-cvs mailing list