diff --git a/src/args.jl b/src/args.jl index b6ff1e71..0a03355c 100644 --- a/src/args.jl +++ b/src/args.jl @@ -805,6 +805,7 @@ function convertLegendValue(val::Symbol) end convertLegendValue(val::Bool) = val ? :best : :none convertLegendValue(val::Void) = :none +convertLegendValue(v::AbstractArray) = map(convertLegendValue, v) # -----------------------------------------------------------------------------