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 Vazquez <venomgfx@gmail.com>2018-08-23 18:15:44 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-08-23 18:15:51 +0300
commit23c03bf0cc4fa85e4b5316b47beb3f8e7be2faa7 (patch)
tree37eae1077450aaa66f1e403e8d0f715676ffbde6 /source/blender/editors/space_view3d/view3d_gizmo_navigate_type.c
parentf97d61c4bd2a9ab3c1dd0ae4902778bc9703a716 (diff)
UI: Dark XYZ characters in the navigation gizmo
Much easier to read against the usually brighter axes colors.
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_gizmo_navigate_type.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_gizmo_navigate_type.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_gizmo_navigate_type.c b/source/blender/editors/space_view3d/view3d_gizmo_navigate_type.c
index b68ed61e06c..4b1fe375084 100644
--- a/source/blender/editors/space_view3d/view3d_gizmo_navigate_type.c
+++ b/source/blender/editors/space_view3d/view3d_gizmo_navigate_type.c
@@ -295,7 +295,7 @@ static void axis_geom_draw(const wmGizmo *gz, const float color[4], const bool U
GPU_line_width(1.0f);
float m3[3][3];
copy_m3_m4(m3, gz->matrix_offset);
- immUniformColor4fv(is_highlight ? axis_black : axis_highlight);
+ immUniformColor4fv(axis_black);
draw_xyz_wire(pos_id, m3, v_final, 1.0, axis);
}
}