UI: overlay, remove redundant 'object' term

This commit is contained in:
Campbell Barton 2018-07-11 19:00:24 +02:00
parent c643f02b07
commit 4b57bb0387
1 changed files with 2 additions and 2 deletions

View File

@ -4045,10 +4045,10 @@ class VIEW3D_PT_overlay_object(Panel):
sub = split.column(align=True)
sub.prop(overlay, "show_bones", text="Bones")
sub.prop(overlay, "show_motion_paths")
sub.prop(overlay, "show_object_origins")
sub.prop(overlay, "show_object_origins", text="Origins")
subsub = sub.column()
subsub.active = overlay.show_object_origins
subsub.prop(overlay, "show_object_origins_all")
subsub.prop(overlay, "show_object_origins_all", text="Origins (All)")
class VIEW3D_PT_overlay_geometry(Panel):