From 8efedf2523e859e844a84247b167807196c0958e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 18 Jan 2019 08:59:41 +1100 Subject: Cleanup: style --- source/blender/editors/space_graph/graph_draw.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'source/blender/editors/space_graph') diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c index 0d3b55df531..26667b6edf7 100644 --- a/source/blender/editors/space_graph/graph_draw.c +++ b/source/blender/editors/space_graph/graph_draw.c @@ -246,8 +246,7 @@ static void draw_fcurve_selected_handle_vertices(FCurve *fcu, View2D *v2d, bool if (!sel_handle_only || BEZT_ISSEL_ANY(bezt)) { if ((!prevbezt && (bezt->ipo == BEZT_IPO_BEZ)) || (prevbezt && (prevbezt->ipo == BEZT_IPO_BEZ))) { if ((bezt->f1 & SELECT) == sel - /* && v2d->cur.xmin < bezt->vec[0][0] < v2d->cur.xmax)*/ - ) + /* && v2d->cur.xmin < bezt->vec[0][0] < v2d->cur.xmax) */ ) { immVertex2fv(pos, bezt->vec[0]); } @@ -255,8 +254,7 @@ static void draw_fcurve_selected_handle_vertices(FCurve *fcu, View2D *v2d, bool if (bezt->ipo == BEZT_IPO_BEZ) { if ((bezt->f3 & SELECT) == sel - /* && v2d->cur.xmin < bezt->vec[2][0] < v2d->cur.xmax)*/ - ) + /* && v2d->cur.xmin < bezt->vec[2][0] < v2d->cur.xmax) */ ) { immVertex2fv(pos, bezt->vec[2]); } -- cgit v1.2.3