Cleanup: Adding braces around all cases here to make it easier for the next step

This commit is contained in:
Joshua Leung
2019-03-02 02:11:14 +13:00
parent 2bad126999
commit dbeef6751d

View File

@@ -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;
}
}
}