Adjust "Show Backface" tool tip to be more accurate

Reviewed By: fclem

Differential Revision: https://developer.blender.org/D13849
This commit is contained in:
Alaska 2022-02-09 11:28:27 +01:00 committed by Jeroen Bakker
parent d3d9e2abbf
commit fd6506626b
1 changed files with 2 additions and 2 deletions

View File

@ -791,8 +791,8 @@ void RNA_def_material(BlenderRNA *brna)
RNA_def_property_boolean_negative_sdna(prop, NULL, "blend_flag", MA_BL_HIDE_BACKFACE);
RNA_def_property_ui_text(prop,
"Show Backface",
"Limit transparency to a single layer "
"(avoids transparency sorting problems)");
"Render multiple transparent layers "
"(may introduce transparency sorting problems)");
RNA_def_property_update(prop, 0, "rna_Material_draw_update");
prop = RNA_def_property(srna, "use_backface_culling", PROP_BOOLEAN, PROP_NONE);