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:
authorTon Roosendaal <ton@blender.org>2010-12-19 16:48:45 +0300
committerTon Roosendaal <ton@blender.org>2010-12-19 16:48:45 +0300
commitf043caf1c1360fc511eba1a88c576759fd14dea9 (patch)
tree23f6f7f3330a90ccc63950f5ae716997d30c1b75 /release
parentc2c71e59ed9c86ccd182993a7b942833f06864c8 (diff)
Py UI fix: options for "Single user" had different names than the operator itself.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_view3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index 14b23e20479..edc0f3ddd65 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -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