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-29 01:51:42 +0300
committerJoshua Leung <aligorith@gmail.com>2009-01-29 01:51:42 +0300
commit59147ad98391c0e15621c0c743b094bbf14bfe07 (patch)
tree683a7b705fb530fe154841bdd178a121fa1b1d7c /source/blender/editors/space_action/action_select.c
parentce2446e3db7c7087efd6bccea203e0d952eab035 (diff)
Animation Editors: Tweaking/Refresh Issues
* Added 'select-tweak' functionality to DopeSheet * Added proper notifiers for Graph Editor updates
Diffstat (limited to 'source/blender/editors/space_action/action_select.c')
-rw-r--r--source/blender/editors/space_action/action_select.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c
index f1eb7688d8c..3c9e8a4215f 100644
--- a/source/blender/editors/space_action/action_select.c
+++ b/source/blender/editors/space_action/action_select.c
@@ -1068,7 +1068,8 @@ static int actkeys_clickselect_invoke(bContext *C, wmOperator *op, wmEvent *even
/* set notifier tha things have changed */
ANIM_animdata_send_notifiers(C, &ac, ANIM_CHANGED_BOTH);
- return OPERATOR_FINISHED;
+ /* for tweak grab to work */
+ return OPERATOR_FINISHED|OPERATOR_PASS_THROUGH;
}
void ACT_OT_keyframes_clickselect (wmOperatorType *ot)