From 412d670e9c581dcafccd950d661611b6a496299c Mon Sep 17 00:00:00 2001 From: Amelie Fondevilla Date: Fri, 7 Oct 2022 09:59:34 +0200 Subject: Refactor: adding function to check if an animation container has grease pencil layer keyframes. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Used in action_select to refactor the selection operators. No functional changes. Reviewed By: Sybren A. Stüvel Differential Revision: http://developer.blender.org/D16168 --- source/blender/editors/animation/anim_filter.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/editors/animation') diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index e0df7328c74..302e50e64d7 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -417,6 +417,11 @@ bool ANIM_animdata_get_context(const bContext *C, bAnimContext *ac) return ANIM_animdata_context_getdata(ac); } +bool ANIM_animdata_can_have_greasepencil(const eAnimCont_Types type) +{ + return type == ANIMCONT_GPENCIL; +} + /* ************************************************************ */ /* Blender Data <-- Filter --> Channels to be operated on */ -- cgit v1.2.3