From 404a427dfdee0f5300b7c4f375cd7ff4a0b8bc8e Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Sun, 18 Sep 2016 21:54:24 +0200 Subject: Minor corrections for previous commit Was using wrong argument name in doxygen comment. Also reduced scope of vars. Sorry for the noise :/ --- source/blender/editors/armature/pose_group.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/armature/pose_group.c') diff --git a/source/blender/editors/armature/pose_group.c b/source/blender/editors/armature/pose_group.c index 85cff2e4df5..c492772b282 100644 --- a/source/blender/editors/armature/pose_group.c +++ b/source/blender/editors/armature/pose_group.c @@ -292,7 +292,6 @@ static int group_move_exec(bContext *C, wmOperator *op) bPoseChannel *pchan; bActionGroup *grp; int dir = RNA_enum_get(op->ptr, "direction"); - int grpIndexA, grpIndexB; if (ELEM(NULL, ob, pose)) return OPERATOR_CANCELLED; @@ -305,9 +304,10 @@ static int group_move_exec(bContext *C, wmOperator *op) return OPERATOR_CANCELLED; /* move bone group */ - grpIndexA = pose->active_group; if (BLI_listbase_link_move(&pose->agroups, grp, dir)) { - grpIndexB = grpIndexA + dir; + int grpIndexA = pose->active_group; + int grpIndexB = grpIndexA + dir; + pose->active_group += dir; /* fix changed bone group indices in bones (swap grpIndexA with grpIndexB) */ for (pchan = ob->pose->chanbase.first; pchan; pchan = pchan->next) { -- cgit v1.2.3