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>2010-01-25 02:18:48 +0300
committerJoshua Leung <aligorith@gmail.com>2010-01-25 02:18:48 +0300
commitc94f385fce14fa5beb8637590ad4d4662cd733c6 (patch)
treeec1133dca2da8902d495249e31740e96a4039448 /source/blender/editors/armature
parent1deecdb9688b5d674a26cec96a86e96085c5607e (diff)
Bugfix #20806: Remove button removes entire bone group not bone from group
Thanks to kristijonas vaicekauskas (krizas) for the patch
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/poseobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/armature/poseobject.c b/source/blender/editors/armature/poseobject.c
index ee6e87292fa..03e25bb67b8 100644
--- a/source/blender/editors/armature/poseobject.c
+++ b/source/blender/editors/armature/poseobject.c
@@ -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;