[Bf-blender-cvs] [43c497051a4] master: Sculpt: Update red cursor color

Pablo Dobarro noreply at git.blender.org
Tue Feb 18 17:04:43 CET 2020


Commit: 43c497051a470ab6611b008d968a5fa8132f63f1
Author: Pablo Dobarro
Date:   Wed Feb 12 21:24:15 2020 +0100
Branches: master
https://developer.blender.org/rB43c497051a470ab6611b008d968a5fa8132f63f1

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

===================================================================

M	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:



More information about the Bf-blender-cvs mailing list