From fe3813b5af90802b38cb1a876d810de1b3360319 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Tue, 28 Apr 2020 19:20:18 +0200 Subject: [PATCH] scale GR markers with thickness_scaling --- 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 271502b5..a23362fc 100644 --- a/src/backends/gr.jl +++ b/src/backends/gr.jl @@ -354,8 +354,8 @@ function gr_draw_markers( shapes = series[:markershape] if shapes != :none for i in eachindex(x) - ms = _cycle(msize, i) - msw = _cycle(strokewidth, i) + ms = _gr_thickness_scaling[1] * _cycle(msize, i) + msw = _gr_thickness_scaling[1] * _cycle(strokewidth, i) shape = _cycle(shapes, i) gr_draw_marker(series, x[i], y[i], clims, i, ms, msw, shape) end