From 9327538f0abeb768fb89a2aee6b58d36cc9ca18f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 27 Jun 2014 23:17:39 +1000 Subject: [PATCH] UI: increase contrast for active colorband handle --- source/blender/editors/interface/interface_draw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/interface/interface_draw.c b/source/blender/editors/interface/interface_draw.c index cc9f8ff00a9..f821aab8c4d 100644 --- a/source/blender/editors/interface/interface_draw.c +++ b/source/blender/editors/interface/interface_draw.c @@ -1028,13 +1028,13 @@ static void ui_draw_colorband_handle( if (active) glColor3ub(196, 196, 196); else - glColor3ub(128, 128, 128); + glColor3ub(96, 96, 96); ui_draw_colorband_handle_tri(x, y1 + height, half_width, half_width, true); if (active) glColor3ub(255, 255, 255); else - glColor3ub(196, 196, 196); + glColor3ub(128, 128, 128); ui_draw_colorband_handle_tri_hlight(x, y1 + height - 1, (half_width - 1), (half_width - 1)); glColor3ub(0, 0, 0);