Fix T45062: Make it clear in tooltip that 'double sided' mesh option only affects

OpenGL (viewport), and not render engines.
This commit is contained in:
Bastien Montagne 2015-06-13 19:45:45 +02:00
parent 9326820a1b
commit 4835fe06f1

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