[Bf-blender-cvs] [cb53c9bc7b3] blender2.8: Fix use of removed Blender Internal properties.

Brecht Van Lommel noreply at git.blender.org
Sun Apr 29 09:24:28 CEST 2018


Commit: cb53c9bc7b3e8fa5d5e15e18b9286670f3d244ab
Author: Brecht Van Lommel
Date:   Sun Apr 29 09:07:35 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBcb53c9bc7b3e8fa5d5e15e18b9286670f3d244ab

Fix use of removed Blender Internal properties.

===================================================================

M	release/scripts/startup/bl_ui/space_view3d.py

===================================================================

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):



More information about the Bf-blender-cvs mailing list