3D View: option to always show center in face mode

This matches 2.7x behavior
This commit is contained in:
2018-08-30 16:21:03 +10:00
parent 7dd24ba6e8
commit e74d7d6f81
4 changed files with 20 additions and 5 deletions

View File

@@ -4354,6 +4354,9 @@ class VIEW3D_PT_overlay_edit_mesh(Panel):
sub.prop(data, "show_edges", text="Edges")
sub = split.column()
sub.prop(data, "show_faces", text="Faces")
sub = split.column()
sub.active = view.use_occlude_geometry
sub.prop(data, "show_face_center", text="Center")
row = col.row(align=True)
row.prop(data, "show_edge_crease", text="Creases", toggle=True)