From 73490903a3000d1d8e834284e7c5501e141502bd Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Wed, 25 Apr 2018 14:14:20 +0200 Subject: [PATCH] fix markerstrokecolor = :auto --- src/args.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/args.jl b/src/args.jl index 6616dc1c..9bfed7cb 100644 --- a/src/args.jl +++ b/src/args.jl @@ -1529,6 +1529,8 @@ function _add_defaults!(d::KW, plt::Plot, sp::Subplot, commandIndex::Int) # update markerstrokecolor d[:markerstrokecolor] = if d[:markerstrokecolor] == :match plot_color(sp[:foreground_color_subplot], d[:markerstrokealpha]) + elseif d[:markerstrokecolor] == :auto + getSeriesRGBColor(plot_color(d[:markercolor], d[:markeralpha]), sp, plotIndex) else getSeriesRGBColor(plot_color(d[:markerstrokecolor], d[:markerstrokealpha]), sp, plotIndex) end