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:
authorPablo Dobarro <pablodp606@gmail.com>2020-02-12 23:24:15 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-02-18 19:10:17 +0300
commit43c497051a470ab6611b008d968a5fa8132f63f1 (patch)
tree62940309675027555c7033a78581b3c25f2ecf4b /source/blender/blenkernel/intern/brush.c
parente30d8f45ef13c6258eea5edd33898a5bf9af4e92 (diff)
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
Diffstat (limited to 'source/blender/blenkernel/intern/brush.c')
-rw-r--r--source/blender/blenkernel/intern/brush.c12
1 files changed, 6 insertions, 6 deletions
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: