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>2019-03-01 16:11:14 +0300
committerJoshua Leung <aligorith@gmail.com>2019-03-01 16:30:31 +0300
commitdbeef6751db3cf300a588b1530441ff685d3f103 (patch)
tree8fc27f6aff6396f33759a5e4dfaaaeee9272e524 /source/blender/editors/space_action
parent2bad126999b2094e685fb8599bb4d39b76a38a2e (diff)
Cleanup: Adding braces around all cases here to make it easier for the next step
Diffstat (limited to 'source/blender/editors/space_action')
-rw-r--r--source/blender/editors/space_action/action_select.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c
index d97a27a403a..c7b62af9d0b 100644
--- a/source/blender/editors/space_action/action_select.c
+++ b/source/blender/editors/space_action/action_select.c
@@ -306,11 +306,15 @@ static void box_select_action(bAnimContext *ac, const rcti rect, short mode, sho
break;
}
case ANIMTYPE_MASKLAYER:
+ {
ED_masklayer_frames_select_box(ale->data, rectf.xmin, rectf.xmax, selectmode);
break;
+ }
default:
+ {
ANIM_animchannel_keyframes_loop(&ked, ac->ads, ale, ok_cb, select_cb, NULL);
break;
+ }
}
}