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:
authorJoshua Leung <aligorith@gmail.com>2009-09-03 16:20:59 +0400
committerJoshua Leung <aligorith@gmail.com>2009-09-03 16:20:59 +0400
commit92395bb93cf862c5d19a40942ba3c8fbc94de962 (patch)
treeb7d38f41c265b8b6118849a4e6f2799175485dcd /release/ui/space_view3d.py
parent78425fb6577e7d1a27e331daacf48c7c53422efd (diff)
2.5 - A few bugfixes...
* Autoside renaming tools in EditMode for armatures now works again. (Wrong property name) * Action used by NLA Strips can now be chosen/changed to another action
Diffstat (limited to 'release/ui/space_view3d.py')
-rw-r--r--release/ui/space_view3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/ui/space_view3d.py b/release/ui/space_view3d.py
index 8477e52acab..1d7ea280222 100644
--- a/release/ui/space_view3d.py
+++ b/release/ui/space_view3d.py
@@ -1069,9 +1069,9 @@ class VIEW3D_MT_edit_ARMATURE(bpy.types.Menu):
layout.itemS()
- layout.item_enumO("armature.autoside_names", "axis", 'XAXIS', text="AutoName Left/Right")
- layout.item_enumO("armature.autoside_names", "axis", 'YAXIS', text="AutoName Front/Back")
- layout.item_enumO("armature.autoside_names", "axis", 'ZAXIS', text="AutoName Top/Bottom")
+ layout.item_enumO("armature.autoside_names", "type", 'XAXIS', text="AutoName Left/Right")
+ layout.item_enumO("armature.autoside_names", "type", 'YAXIS', text="AutoName Front/Back")
+ layout.item_enumO("armature.autoside_names", "type", 'ZAXIS', text="AutoName Top/Bottom")
layout.itemO("armature.flip_names")
layout.itemS()