From 9b705a573ba5dd5fe06e1f4076b207a59801ec10 Mon Sep 17 00:00:00 2001 From: Christoph Lendenfeld Date: Fri, 17 Feb 2023 10:33:36 +0100 Subject: [PATCH] skip baked FCurves --- source/blender/editors/space_graph/graph_edit.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index 34c34613cf6..b1f4673f7eb 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -1880,6 +1880,11 @@ static bool euler_filter_single_channel(FCurve *fcu) return false; } + /* Skip baked FCurves. */ + if (fcu->bezt == NULL) { + return false; + } + /* `prev` follows bezt, bezt = "current" point to be fixed. */ /* Our method depends on determining a "difference" from the previous vert. */ bool is_modified = false; -- 2.30.2