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>2008-02-13 09:43:31 +0300
committerJoshua Leung <aligorith@gmail.com>2008-02-13 09:43:31 +0300
commit0f68741217b45b1becf1f50fd4763f0ca6b61b82 (patch)
tree2cc900bb447d67829a17aa04b6f903b7bd9e7f05 /source/blender/include/BSE_editaction_types.h
parent60378a306c5634a4f649be3f3497da80f0b5d899 (diff)
== Action Editor - Insert Key+ "Active Group" ==
"Insert Key" menu in Action Editor (IKEY) now has a new option: "In Active Group". This only inserts keyframes in the active action group (if available).
Diffstat (limited to 'source/blender/include/BSE_editaction_types.h')
-rw-r--r--source/blender/include/BSE_editaction_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/include/BSE_editaction_types.h b/source/blender/include/BSE_editaction_types.h
index ae61b09a13a..c347c04d7c2 100644
--- a/source/blender/include/BSE_editaction_types.h
+++ b/source/blender/include/BSE_editaction_types.h
@@ -73,7 +73,8 @@ typedef enum ACTFILTER_FLAGS {
ACTFILTER_CHANNELS = (1<<3), /* do we only care that it is a channel */
ACTFILTER_IPOKEYS = (1<<4), /* only channels referencing ipo's */
ACTFILTER_ONLYICU = (1<<5), /* only reference ipo-curves */
- ACTFILTER_FORDRAWING = (1<<6) /* make list for interface drawing */
+ ACTFILTER_FORDRAWING = (1<<6), /* make list for interface drawing */
+ ACTFILTER_ACTGROUPED = (1<<7) /* belongs to the active group */
} ACTFILTER_FLAGS;
/* Action Editor - Main Data types */