From ce31ea8bf345c12bb8a269416c0c4a926157bf5e Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 12 Jul 2016 17:26:17 +1200 Subject: [PATCH] Legend location in subplot --- src/args.jl | 1 + 1 file changed, 1 insertion(+) 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) # -----------------------------------------------------------------------------