Fix T93194: greasepencil channel lists ignoring collection visibility

Same fix as rB0a3b4d4c64f1, but this time for greasepencil.

To repeat: dopesheet in greasepencil mode was ignoring the temporariy
visibility flag of collections. As a result, even though the dopesheet
was supposed to show animation data of visible greasepencils only was
still showing such data of greasepencils that were hidden by hiding
their collection.
This commit is contained in:
Philipp Oeser 2021-11-19 11:16:04 +01:00
parent 798b989e7d
commit 70395ff7fd
Notes: blender-bot 2023-02-14 08:45:12 +01:00
Referenced by issue #93194, Channels in the Grease Pencil Dope Sheet still visible while collection is hidden
Referenced by issue #77348, Blender LTS: Maintenance Task 2.83
1 changed files with 2 additions and 1 deletions

View File

@ -1870,7 +1870,8 @@ static size_t animdata_filter_gpencil(bAnimContext *ac,
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. */
if ((base->flag & BASE_VISIBLE_DEPSGRAPH) == 0) {
if ((base->flag & BASE_VISIBLE_DEPSGRAPH) == 0 ||
(base->flag & BASE_VISIBLE_VIEWLAYER) == 0) {
continue;
}