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>2019-10-01 19:12:43 +0300
committerPablo Dobarro <pablodp606@gmail.com>2019-10-02 16:57:00 +0300
commitfb62c578bc093e8ec2e6e3753d60919e6fb272e9 (patch)
treec7cfcc2613be13ee0914e7428d1f49b6fd247175 /source/blender/blenkernel/intern/brush.c
parented59c32b0c49bfd5fb608a54a99f0a0b2fe19c68 (diff)
Fix default cursor blue color
The previous one was too light Reviewed By: billreynish Differential Revision: https://developer.blender.org/D5959
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 4187dfa68ad..f80d262ee47 100644
--- a/source/blender/blenkernel/intern/brush.c
+++ b/source/blender/blenkernel/intern/brush.c
@@ -968,12 +968,12 @@ void BKE_brush_sculpt_reset(Brush *br)
case SCULPT_TOOL_INFLATE:
case SCULPT_TOOL_BLOB:
case SCULPT_TOOL_CREASE:
- br->add_col[0] = 0.65f;
- br->add_col[1] = 0.85f;
- br->add_col[2] = 0.9f;
- br->sub_col[0] = 0.65f;
- br->sub_col[1] = 0.85f;
- br->sub_col[2] = 0.9f;
+ br->add_col[0] = 0.5f;
+ br->add_col[1] = 0.7f;
+ br->add_col[2] = 0.875f;
+ br->sub_col[0] = 0.5f;
+ br->sub_col[1] = 0.7f;
+ br->sub_col[2] = 0.875f;
break;
case SCULPT_TOOL_SMOOTH: