UI: overlay panel minor tweak

Move face-orientation to less prominent location since its
more of a debugging option.
This commit is contained in:
Campbell Barton 2018-07-11 17:22:57 +02:00
parent cbfe522bb3
commit 8bab591758
1 changed files with 2 additions and 2 deletions

View File

@ -4066,11 +4066,11 @@ class VIEW3D_PT_overlay_geometry(Panel):
col = layout.column(align=True)
split = col.split()
sub = split.column(align=True)
sub.prop(overlay, "show_face_orientation")
sub.prop(overlay, "show_backface_culling")
sub = split.column(align=True)
#sub.prop(overlay, "show_onion_skins")
sub.prop(overlay, "show_backface_culling")
sub.prop(overlay, "show_face_orientation")
class VIEW3D_PT_overlay_motion_tracking(Panel):