Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-04-29 10:07:35 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-04-29 10:18:54 +0300
commitcb53c9bc7b3e8fa5d5e15e18b9286670f3d244ab (patch)
treef961a2d822f830b21bf0044314a72f74fc4b1e43 /release
parenta56d6e467b9a8ad422de100a969dc2d0b9276135 (diff)
Fix use of removed Blender Internal properties.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 678974c3b4e..4ccd8d37cf8 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1803,17 +1803,17 @@ class VIEW3D_MT_make_single_user(Menu):
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 = layout.operator("object.make_single_user", text="Object & Data & Materials")
+ props.object = props.obdata = props.material = True
props.animation = False
- props = layout.operator("object.make_single_user", text="Materials+Tex")
- props.material = props.texture = True
+ props = layout.operator("object.make_single_user", text="Materials")
+ props.material = 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
+ props.object = props.obdata = props.material = False
class VIEW3D_MT_make_links(Menu):