From 12c2be8c02517261fa33a0760dc0a93680bab8ab Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 4 Aug 2017 00:32:01 +1200 Subject: GraphEdit Drawing: Make active F-Curve slightly thicker --- source/blender/editors/space_graph/graph_draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_graph/graph_draw.c') diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c index b92c0a67a14..d917e3b85a2 100644 --- a/source/blender/editors/space_graph/graph_draw.c +++ b/source/blender/editors/space_graph/graph_draw.c @@ -1039,7 +1039,7 @@ void graph_draw_curves(bAnimContext *ac, SpaceIpo *sipo, ARegion *ar, View2DGrid /* set color/drawing style for curve itself */ /* draw active F-Curve thicker than the rest to make it stand out */ if (fcu->flag & FCURVE_ACTIVE) { - glLineWidth(2.0); + glLineWidth(2.5); } else { glLineWidth(1.0); -- cgit v1.2.3