[Bf-blender-cvs] [53a7ce1f8a9] master: UI: increase contrast for active bone

Campbell Barton noreply at git.blender.org
Fri Jul 12 14:30:39 CEST 2019


Commit: 53a7ce1f8a99e774d0082c2b649b7626d627c0b7
Author: Campbell Barton
Date:   Fri Jul 12 22:29:23 2019 +1000
Branches: master
https://developer.blender.org/rB53a7ce1f8a99e774d0082c2b649b7626d627c0b7

UI: increase contrast for active bone

Follow up for T66747 fix, active color didn't contrast enough.

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

M	source/blender/draw/intern/draw_armature.c

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

diff --git a/source/blender/draw/intern/draw_armature.c b/source/blender/draw/intern/draw_armature.c
index 4f387de16a8..b31ce22ebe9 100644
--- a/source/blender/draw/intern/draw_armature.c
+++ b/source/blender/draw/intern/draw_armature.c
@@ -883,7 +883,7 @@ static void update_color(const Object *ob, const float const_color[4])
 #define NO_ALPHA(c) (((c)[3] = 1.0f), (c))
 
   UI_GetThemeColor3fv(TH_SELECT, NO_ALPHA(g_theme.select_color));
-  UI_GetThemeColor3fv(TH_EDGE_SELECT, NO_ALPHA(g_theme.edge_select_color));
+  UI_GetThemeColorShade3fv(TH_EDGE_SELECT, 60, NO_ALPHA(g_theme.edge_select_color));
   UI_GetThemeColorShade3fv(TH_EDGE_SELECT, -20, NO_ALPHA(g_theme.bone_select_color));
   UI_GetThemeColor3fv(TH_WIRE, NO_ALPHA(g_theme.wire_color));
   UI_GetThemeColor3fv(TH_WIRE_EDIT, NO_ALPHA(g_theme.wire_edit_color));



More information about the Bf-blender-cvs mailing list