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:
authorCampbell Barton <ideasman42@gmail.com>2010-01-14 23:48:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-14 23:48:25 +0300
commit5d16a5b7d998c3110e41f1343def4c7e4454ce2b (patch)
treef3dca111b99b24684bb4ae81daa110a43784077e /source/blender/editors/space_action
parente9e89ecfc3d7f1b29f58fc9d18e981853bef0bda (diff)
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.
Diffstat (limited to 'source/blender/editors/space_action')
-rw-r--r--source/blender/editors/space_action/action_select.c4
1 files changed, 3 insertions, 1 deletions
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);
}