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>2011-06-22 16:54:26 +0400
committerJoshua Leung <aligorith@gmail.com>2011-06-22 16:54:26 +0400
commitc48e1467384d6069b1a4f8c7bc4d7fa239c2b545 (patch)
treeadfcfab340a9560473cd48e0dd4ac07ec0e4f62a /source/blender/editors/include/ED_anim_api.h
parentab2026bf4271ba316ffe621eb142091127ee1cf0 (diff)
Bugfix [#21276] The Tab key is not working in the Graph Editor when
the list of animated curves is closed At long last, this old bludger can be put out to pasture. I figured it would involve some of the visibility-filtering stuff I added, but this required a bit extra effort than anticipated.
Diffstat (limited to 'source/blender/editors/include/ED_anim_api.h')
-rw-r--r--source/blender/editors/include/ED_anim_api.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/source/blender/editors/include/ED_anim_api.h b/source/blender/editors/include/ED_anim_api.h
index 36e52fa8b8f..e8e179e8c84 100644
--- a/source/blender/editors/include/ED_anim_api.h
+++ b/source/blender/editors/include/ED_anim_api.h
@@ -183,25 +183,6 @@ typedef enum eAnim_KeyType {
/* ----------------- Filtering -------------------- */
-#if 0 /// old
-/* filtering flags - under what circumstances should a channel be added */
-typedef enum eAnimFilter_Flags {
- ANIMFILTER_VISIBLE = (1<<0), /* should channels be visible (in terms of hierarchy only) */
- //ANIMFILTER_SEL = (1<<1), /* should channels be selected */
- //ANIMFILTER_UNSEL = (1<<2), /* should channels be NOT selected */
- //ANIMFILTER_FOREDIT = (1<<3), /* does editable status matter */
- ANIMFILTER_CURVESONLY = (1<<4), /* don't include summary-channels, etc. */ // double-check on how this goes for actedit
- ANIMFILTER_CHANNELS = (1<<5), /* make list for interface drawing */
- //ANIMFILTER_ACTGROUPED = (1<<6), /* belongs to the active actiongroup */
- ANIMFILTER_CURVEVISIBLE = (1<<7), /* F-Curve is visible for editing/viewing in Graph Editor */
- //ANIMFILTER_ACTIVE = (1<<8), /* channel should be 'active' */
- //ANIMFILTER_ANIMDATA = (1<<9), /* only return the underlying AnimData blocks (not the tracks, etc.) data comes from */
- ANIMFILTER_NLATRACKS = (1<<10), /* only include NLA-tracks */
- //ANIMFILTER_SELEDIT = (1<<11), /* link editability with selected status */
- //ANIMFILTER_NODUPLIS = (1<<12), /* duplicate entries for animation data attached to multi-user blocks must not occur */
-} eAnimFilter_Flags;
-#endif
-
/* filtering flags - under what circumstances should a channel be returned */
// TODO: flag to just test if there's any channel inside worthy of being added - return 1 as soon as this is encountered, but don't add
typedef enum eAnimFilter_Flags {