From 5d16a5b7d998c3110e41f1343def4c7e4454ce2b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 14 Jan 2010 20:48:25 +0000 Subject: Ctrl+RMB select in the dope-sheet wasnt working, this nlabackup stuff isnt being done for select-all so not sure why its there, commented it out for now. Aligorith, please check. --- source/blender/editors/space_action/action_select.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/space_action') diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c index 9155f57c7a0..3f7a568fc00 100644 --- a/source/blender/editors/space_action/action_select.c +++ b/source/blender/editors/space_action/action_select.c @@ -663,7 +663,8 @@ static void actkeys_mselect_leftright (bAnimContext *ac, short leftright, short /* select keys on the side where most data occurs */ for (ale= anim_data.first; ale; ale= ale->next) { AnimData *adt= ANIM_nla_mapping_get(ac, ale); - + +#if 0 // This does not work even in simple cases I tested - campbell if (adt) { ListBase nlabackup; @@ -674,6 +675,7 @@ static void actkeys_mselect_leftright (bAnimContext *ac, short leftright, short //else if (ale->type == ANIMTYPE_GPLAYER) // borderselect_gplayer_frames(ale->data, min, max, SELECT_ADD); else +#endif ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, ok_cb, select_cb, NULL); } -- cgit v1.2.3