Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-01-18 00:59:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-18 00:59:41 +0300
commit8efedf2523e859e844a84247b167807196c0958e (patch)
treefd285dd6811fecde313fa840b117e38e52b4ed47 /source/blender/editors/space_graph
parentd3e856cdfc0f184c230166046dd939baa0ac7a28 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/graph_draw.c6
1 files changed, 2 insertions, 4 deletions
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]);
}