From adfbf276a15346c38cc6b7652191c005b9a3ae9b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 7 Oct 2017 15:57:14 +1100 Subject: Cleanup: style, duplicate includes --- source/blender/editors/armature/editarmature_sketch.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/editors/armature/editarmature_sketch.c') diff --git a/source/blender/editors/armature/editarmature_sketch.c b/source/blender/editors/armature/editarmature_sketch.c index b96e04a8a60..41c1c73e49c 100644 --- a/source/blender/editors/armature/editarmature_sketch.c +++ b/source/blender/editors/armature/editarmature_sketch.c @@ -2033,12 +2033,12 @@ static void sk_drawSketch(Scene *scene, View3D *UNUSED(v3d), SK_Sketch *sketch, glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); switch (sketch->next_point.mode) { - case PT_SNAP: - copy_v4_fl4(tmp_color, 0.0f, 1.0f, 0.0f, 1.0f); - break; - case PT_PROJECT: - copy_v4_fl4(tmp_color, 0.0f, 0.0f, 0.0f, 1.0f); - break; + case PT_SNAP: + copy_v4_fl4(tmp_color, 0.0f, 1.0f, 0.0f, 1.0f); + break; + case PT_PROJECT: + copy_v4_fl4(tmp_color, 0.0f, 0.0f, 0.0f, 1.0f); + break; } sk_drawPoint(&sketch->next_point, 0.1, tmp_color); -- cgit v1.2.3