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>2013-04-03 07:25:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-03 07:25:26 +0400
commita5bd9cbb9353c59bc88db5a3f3b2fb754530cc6c (patch)
treed545e0e90ec4d72741210131c9b3cc66f2d6d9b5 /source/blender/editors/space_action
parentff7b353ce68a2b16fd4649d4d81214db7a802307 (diff)
fix [#34847] Box selecting shape keys of a mask causes crash
Diffstat (limited to 'source/blender/editors/space_action')
-rw-r--r--source/blender/editors/space_action/action_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c
index b6d2d31f0ad..eb755e162a3 100644
--- a/source/blender/editors/space_action/action_select.c
+++ b/source/blender/editors/space_action/action_select.c
@@ -277,7 +277,7 @@ static void borderselect_action(bAnimContext *ac, rcti rect, short mode, short s
Mask *mask = ale->data;
MaskLayer *masklay;
for (masklay = mask->masklayers.first; masklay; masklay = masklay->next) {
- ED_masklayer_frames_select_border(ale->data, rectf.xmin, rectf.xmax, selectmode);
+ ED_masklayer_frames_select_border(masklay, rectf.xmin, rectf.xmax, selectmode);
}
break;
}