From f37fa6d0b1394ac67a3ce379df751eb84f0a2482 Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Fri, 7 Jul 2023 15:43:04 +0200 Subject: [PATCH] Cleanup: make format --- source/blender/editors/space_graph/graph_draw.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c index 00405a05b75..ee2fc37b3e4 100644 --- a/source/blender/editors/space_graph/graph_draw.c +++ b/source/blender/editors/space_graph/graph_draw.c @@ -242,7 +242,8 @@ static void draw_locked_keyframe_vertices(FCurve *fcu, BezTriple *bezt = &fcu->bezt[i]; if (!IN_RANGE(bezt->vec[1][0], (v2d->cur.xmin - correction_factor), - (v2d->cur.xmax + correction_factor))) { + (v2d->cur.xmax + correction_factor))) + { continue; } float position[2] = {bezt->vec[1][0], bezt->vec[1][1]};