- EditBone was missing 'selected'
- renamed 'selectable' to --> 'restrict_select', matching object mode.
- renamed 'active_pchan' --> 'active_pose_bone'
This commit is contained in:
Campbell Barton
2009-11-24 17:12:32 +00:00
parent f28975dbc4
commit dcd1642121
7 changed files with 15 additions and 10 deletions

View File

@@ -284,7 +284,7 @@ class BONE_PT_properties(BoneButtonsPanel):
# reload(rna_prop_ui)
obj = context.object
if obj and obj.mode == 'POSE':
item = "active_pchan"
item = "active_pose_bone"
else:
item = "active_bone"

View File

@@ -1775,7 +1775,7 @@ class VIEW3D_PT_context_properties(bpy.types.Panel):
if obj:
mode = obj.mode
if mode == 'POSE':
return "active_pchan"
return "active_pose_bone"
elif mode == 'EDIT' and obj.type == 'ARMATURE':
return "active_bone"
else: