Bugfix #20806: Remove button removes entire bone group not bone from group

Thanks to kristijonas vaicekauskas (krizas)  for the patch
This commit is contained in:
2010-01-24 23:18:48 +00:00
parent 1deecdb968
commit c94f385fce
2 changed files with 2 additions and 2 deletions

View File

@@ -158,7 +158,7 @@ class DATA_PT_bone_groups(DataButtonsPanel):
row.active = (ob.proxy is None)
row.operator("pose.group_assign", text="Assign")
row.operator("pose.group_remove", text="Remove") #row.operator("pose.bone_group_remove_from", text="Remove")
row.operator("pose.group_unassign", text="Remove") #row.operator("pose.bone_group_remove_from", text="Remove")
#row.operator("object.bone_group_select", text="Select")
#row.operator("object.bone_group_deselect", text="Deselect")

View File

@@ -1236,7 +1236,7 @@ void POSE_OT_group_unassign (wmOperatorType *ot)
/* identifiers */
ot->name= "Remove Selected from Bone Groups";
ot->idname= "POSE_OT_group_unassign";
ot->description= "Add selected bones from all bone groups";
ot->description= "Remove selected bones from all bone groups";
/* api callbacks */
ot->exec= pose_group_unassign_exec;