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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-10-14 18:22:57 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-10-14 18:22:57 +0300
commit8e80d2741deaa919a62e6e1677c0520332792698 (patch)
treeff6e22e1515dab6fa63e126647bd6a3f0c966bc0 /source/blender/editors/include
parent0ddb8d9b13806c0a47224b9f3ba4dd6911cd7a47 (diff)
Fix T49571: 2d stabilize keys not visible in the Graph Editor and Dope Sheet
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_anim_api.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_anim_api.h b/source/blender/editors/include/ED_anim_api.h
index b761139113d..4a4ab832b28 100644
--- a/source/blender/editors/include/ED_anim_api.h
+++ b/source/blender/editors/include/ED_anim_api.h
@@ -170,6 +170,7 @@ typedef enum eAnim_ChannelType {
ANIMTYPE_DSLINESTYLE,
ANIMTYPE_DSSPK,
ANIMTYPE_DSGPENCIL,
+ ANIMTYPE_DSMCLIP,
ANIMTYPE_SHAPEKEY,
@@ -329,6 +330,8 @@ typedef enum eAnimFilter_Flags {
#define SEL_NLT(nlt) (nlt->flag & NLATRACK_SELECTED)
#define EDITABLE_NLT(nlt) ((nlt->flag & NLATRACK_PROTECTED) == 0)
+/* Movie clip only */
+#define EXPANDED_MCLIP(clip) (clip->flag & MCLIP_DATA_EXPAND)
/* AnimData - NLA mostly... */
#define SEL_ANIMDATA(adt) (adt->flag & ADT_UI_SELECTED)