From 43c497051a470ab6611b008d968a5fa8132f63f1 Mon Sep 17 00:00:00 2001 From: Pablo Dobarro Date: Wed, 12 Feb 2020 21:24:15 +0100 Subject: Sculpt: Update red cursor color Some users reported that the previous red color of the cursor was too saturated and that can be distracting. Reviewed By: brecht Differential Revision: https://developer.blender.org/D6828 --- source/blender/blenkernel/intern/brush.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/blenkernel/intern/brush.c') diff --git a/source/blender/blenkernel/intern/brush.c b/source/blender/blenkernel/intern/brush.c index 1f314dbf7cb..15ef6479007 100644 --- a/source/blender/blenkernel/intern/brush.c +++ b/source/blender/blenkernel/intern/brush.c @@ -1047,12 +1047,12 @@ void BKE_brush_sculpt_reset(Brush *br) case SCULPT_TOOL_FILL: case SCULPT_TOOL_SCRAPE: case SCULPT_TOOL_MULTIPLANE_SCRAPE: - br->add_col[0] = 1.0f; - br->add_col[1] = 0.05f; - br->add_col[2] = 0.01f; - br->sub_col[0] = 1.0f; - br->sub_col[1] = 0.05f; - br->sub_col[2] = 0.01f; + br->add_col[0] = 0.877f; + br->add_col[1] = 0.142f; + br->add_col[2] = 0.117f; + br->sub_col[0] = 0.877f; + br->sub_col[1] = 0.142f; + br->sub_col[2] = 0.117f; break; case SCULPT_TOOL_PINCH: -- cgit v1.2.3