diff --git a/src/args.jl b/src/args.jl index 503a2a5b..4c61d43e 100644 --- a/src/args.jl +++ b/src/args.jl @@ -809,6 +809,7 @@ function convertLegendValue(val::Symbol) end convertLegendValue(val::Bool) = val ? :best : :none convertLegendValue(val::Void) = :none +convertLegendValue(v::AbstractArray) = map(convertLegendValue, v) # -----------------------------------------------------------------------------