Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/animation/anim_filter.c
| Context not available. | |||||
| !(ads->filterflag & ADS_FILTER_INCL_HIDDEN)) { | !(ads->filterflag & ADS_FILTER_INCL_HIDDEN)) { | ||||
| /* Layer visibility - we check both object and base, | /* Layer visibility - we check both object and base, | ||||
| * since these may not be in sync yet. */ | * since these may not be in sync yet. */ | ||||
| if ((base->flag & BASE_VISIBLE_DEPSGRAPH) == 0) { | if ((base->flag & BASE_VISIBLE) == 0) { | ||||
| continue; | continue; | ||||
| } | } | ||||
| Context not available. | |||||
| */ | */ | ||||
| if ((filter_mode & ANIMFILTER_DATA_VISIBLE) && !(ads->filterflag & ADS_FILTER_INCL_HIDDEN)) { | if ((filter_mode & ANIMFILTER_DATA_VISIBLE) && !(ads->filterflag & ADS_FILTER_INCL_HIDDEN)) { | ||||
| /* layer visibility - we check both object and base, since these may not be in sync yet */ | /* layer visibility - we check both object and base, since these may not be in sync yet */ | ||||
| if ((base->flag & BASE_VISIBLE_DEPSGRAPH) == 0) { | if ((base->flag & BASE_VISIBLE) == 0) { | ||||
| return false; | return false; | ||||
| } | } | ||||
| Context not available. | |||||