Fix default cursor blue color

The previous one was too light

Reviewed By: billreynish

Differential Revision: https://developer.blender.org/D5959
This commit is contained in:
Pablo Dobarro 2019-10-01 18:12:43 +02:00
parent ed59c32b0c
commit fb62c578bc
1 changed files with 6 additions and 6 deletions

View File

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