Fix T39353: Make Single User menu entries do not work correctly.

This commit is contained in:
Bastien Montagne 2014-03-23 11:33:40 +01:00
parent fcaa018249
commit 4c73001093
Notes: blender-bot 2023-02-14 10:55:42 +01:00
Referenced by issue #39353, Make Single User menu entries do not work correctly.
1 changed files with 5 additions and 0 deletions

View File

@ -1354,18 +1354,23 @@ class VIEW3D_MT_make_single_user(Menu):
props = layout.operator("object.make_single_user", text="Object")
props.object = True
props.obdata = props.material = props.texture = props.animation = False
props = layout.operator("object.make_single_user", text="Object & Data")
props.object = props.obdata = True
props.material = props.texture = props.animation = False
props = layout.operator("object.make_single_user", text="Object & Data & Materials+Tex")
props.object = props.obdata = props.material = props.texture = True
props.animation = False
props = layout.operator("object.make_single_user", text="Materials+Tex")
props.material = props.texture = True
props.object = props.obdata = props.animation = False
props = layout.operator("object.make_single_user", text="Object Animation")
props.animation = True
props.object = props.obdata = props.material = props.texture = False
class VIEW3D_MT_make_links(Menu):