From b04e6ff699998bdfdcd750c918616d72ea9ee5b2 Mon Sep 17 00:00:00 2001 From: Fabian Greimel Date: Sat, 13 Oct 2018 14:07:19 +0200 Subject: [PATCH] GR: use correct attribute for axis color --- src/backends/gr.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backends/gr.jl b/src/backends/gr.jl index 267875f94..37c897670 100644 --- a/src/backends/gr.jl +++ b/src/backends/gr.jl @@ -855,12 +855,12 @@ function gr_display(sp::Subplot{GRBackend}, w, h, viewport_canvas) # axis lines if xaxis[:showaxis] - gr_set_line(1, :solid, xaxis[:foreground_color_axis]) + gr_set_line(1, :solid, xaxis[:foreground_color_border]) GR.setclip(0) gr_polyline(coords(xspine_segs)...) end if yaxis[:showaxis] - gr_set_line(1, :solid, yaxis[:foreground_color_axis]) + gr_set_line(1, :solid, yaxis[:foreground_color_border]) GR.setclip(0) gr_polyline(coords(yspine_segs)...) end