Py UI fix: options for "Single user" had different names than the operator itself.

This commit is contained in:
Ton Roosendaal 2010-12-19 13:48:45 +00:00
parent c2c71e59ed
commit f043caf1c1

@ -897,16 +897,16 @@ class VIEW3D_MT_make_single_user(bpy.types.Menu):
props = layout.operator("object.make_single_user", text="Object")
props.object = True
props = layout.operator("object.make_single_user", text="Object & ObData")
props = layout.operator("object.make_single_user", text="Object & Data")
props.object = props.obdata = True
props = layout.operator("object.make_single_user", text="Object & ObData & Materials+Tex")
props = layout.operator("object.make_single_user", text="Object & Data & Materials+Tex")
props.object = props.obdata = props.material = props.texture = True
props = layout.operator("object.make_single_user", text="Materials+Tex")
props.material = props.texture = True
props = layout.operator("object.make_single_user", text="Animation")
props = layout.operator("object.make_single_user", text="Object Animation")
props.animation = True