UI: clarify "show faces" description

The text made it seem the overlay *only* highlighted selected faces
when this applies to unselected faces too.
This commit is contained in:
Campbell Barton
2024-08-28 13:11:43 +10:00
parent 2fd2af86e8
commit ab261355ab

View File

@@ -4774,7 +4774,7 @@ static void rna_def_space_view3d_overlay(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_faces", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, nullptr, "overlay.edit_flag", V3D_OVERLAY_EDIT_FACES);
RNA_def_property_ui_text(prop, "Display Faces", "Highlight selected faces");
RNA_def_property_ui_text(prop, "Display Faces", "Display a face selection overlay");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, nullptr);
prop = RNA_def_property(srna, "show_face_center", PROP_BOOLEAN, PROP_NONE);