UI: Change "Show Edge Seams" toggle position

This commit is contained in:
Clément Foucault 2018-09-05 17:07:32 +02:00
parent b3aa0cfe75
commit 58a90dbd97
1 changed files with 1 additions and 4 deletions

View File

@ -4370,9 +4370,7 @@ class VIEW3D_PT_overlay_edit_mesh(Panel):
row.prop(data, "show_edge_crease", text="Creases", toggle=True)
row.prop(data, "show_edge_sharp", text="Sharp", text_ctxt=i18n_contexts.plural, toggle=True)
row.prop(data, "show_edge_bevel_weight", text="Bevel", toggle=True)
if not with_freestyle:
row.prop(data, "show_edge_seams", text="Seams", toggle=True)
row.prop(data, "show_edge_seams", text="Seams", toggle=True)
class VIEW3D_PT_overlay_edit_mesh_shading(Panel):
@ -4524,7 +4522,6 @@ class VIEW3D_PT_overlay_edit_mesh_freestyle(Panel):
row = col.row()
row.prop(data, "show_freestyle_edge_marks", text="Edge Marks")
row.prop(data, "show_freestyle_face_marks", text="Face Marks")
row.prop(data, "show_edge_seams", text="Seams")
class VIEW3D_PT_overlay_edit_mesh_developer(Panel):