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-07-24 17:34:45 +0400
committerJoshua Leung <aligorith@gmail.com>2009-07-24 17:34:45 +0400
commit4158913835500e505e722358c2b573e98066bee3 (patch)
tree9924b76b8053ef65212f7ffe3e837fe3edfe9439 /source/blender/editors/space_nla/nla_edit.c
parent7f630d728a2b37ce7eb5200dea6fd19a85296029 (diff)
2.5 - Adding Jump to Next/Prev Keyframe Operator
This is implemented at the Screen-level, and only considers scene and active-object keyframes (like the timeline). TODO: * Need to update the timeline header buttons to use this operator. One limitation is that I can't get the buttons there to take an arg...
Diffstat (limited to 'source/blender/editors/space_nla/nla_edit.c')
-rw-r--r--source/blender/editors/space_nla/nla_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_nla/nla_edit.c b/source/blender/editors/space_nla/nla_edit.c
index 586b2467781..64fed7c2433 100644
--- a/source/blender/editors/space_nla/nla_edit.c
+++ b/source/blender/editors/space_nla/nla_edit.c
@@ -88,7 +88,7 @@ void ED_nla_postop_refresh (bAnimContext *ac)
short filter= (ANIMFILTER_VISIBLE | ANIMFILTER_ANIMDATA | ANIMFILTER_FOREDIT);
/* get blocks to work on */
- ANIM_animdata_filter(&ac, &anim_data, filter, ac->data, ac->datatype);
+ ANIM_animdata_filter(ac, &anim_data, filter, ac->data, ac->datatype);
for (ale= anim_data.first; ale; ale= ale->next) {
/* performing auto-blending, extend-mode validation, etc. */