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:
authorCampbell Barton <ideasman42@gmail.com>2014-06-27 17:17:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-27 17:17:39 +0400
commit9327538f0abeb768fb89a2aee6b58d36cc9ca18f (patch)
tree8932be99be581fe43606614603a72f4a9c294303 /source/blender/editors/interface/interface_draw.c
parentb9522e557a0346ef7e9f4f5050774bdf3b023204 (diff)
UI: increase contrast for active colorband handle
Diffstat (limited to 'source/blender/editors/interface/interface_draw.c')
-rw-r--r--source/blender/editors/interface/interface_draw.c4
1 files 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);