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-01-02 04:28:05 +0300
committerJoshua Leung <aligorith@gmail.com>2009-01-02 04:28:05 +0300
commit96d80b28b20fb2148dfb7f4e03a12cbecb6db8c0 (patch)
treec2de23f63e3d410c172edc772c02830c1539acc9 /source/blender/editors/space_action/action_select.c
parentf4a4279611938c8e4003a8a112584ece0fd25665 (diff)
2.5 Animation Channels - Borderselect Tool
Added BorderSelect operator for animation channels.
Diffstat (limited to 'source/blender/editors/space_action/action_select.c')
-rw-r--r--source/blender/editors/space_action/action_select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c
index 144f9b4bcdd..7cb1912f321 100644
--- a/source/blender/editors/space_action/action_select.c
+++ b/source/blender/editors/space_action/action_select.c
@@ -852,7 +852,7 @@ static void mouse_action_keys (bAnimContext *ac, int mval[2], short selectmode)
deselect_action_keys(ac, 0, 0);
if (ELEM(ac->datatype, ANIMCONT_ACTION, ANIMCONT_DOPESHEET)) {
- //deselect_action_channels(0);
+ ANIM_deselect_anim_channels(ac->data, ac->datatype, 0, ACHANNEL_SETFLAG_CLEAR);
/* Highlight either an Action-Channel or Action-Group */
if (achan) {
@@ -866,7 +866,7 @@ static void mouse_action_keys (bAnimContext *ac, int mval[2], short selectmode)
}
}
else if (ac->datatype == ANIMCONT_GPENCIL) {
- //deselect_action_channels(0);
+ ANIM_deselect_anim_channels(ac->data, ac->datatype, 0, ACHANNEL_SETFLAG_CLEAR);
/* Highlight gpencil layer */
gpl->flag |= GP_LAYER_SELECT;