diff --git a/src/pipeline.jl b/src/pipeline.jl index 73543355..d7fb75aa 100644 --- a/src/pipeline.jl +++ b/src/pipeline.jl @@ -369,6 +369,11 @@ function _process_seriesrecipe(plt::Plot, d::KW) st = Symbol(d[:seriestype]) st = d[:seriestype] = get(_typeAliases, st, st) + # shapes shouldn't have fillrange set + if d[:seriestype] == :shape + d[:fillrange] = nothing + end + # if it's natively supported, finalize processing and pass along to the backend, otherwise recurse if st in supported_types() sp = _prepare_subplot(plt, d) diff --git a/test/travis_commands.jl b/test/travis_commands.jl index a60b53e0..4b417f60 100644 --- a/test/travis_commands.jl +++ b/test/travis_commands.jl @@ -6,7 +6,9 @@ Pkg.build("GR") Pkg.clone("https://github.com/JuliaPlots/PlotReferenceImages.jl.git") -Pkg.clone("https://github.com/JuliaStats/KernelDensity.jl.git") +# Pkg.clone("https://github.com/JuliaStats/KernelDensity.jl.git") + +Pkg.checkout("StatPlots") # Pkg.clone("https://github.com/JunoLab/Blink.jl.git") # Pkg.build("Blink")