From 1ad9a7e17614beceb0563e91ee9c4f73f2c81c94 Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Tue, 12 Jul 2016 12:53:03 -0400 Subject: [PATCH] fix fillrange for shape; travis fix --- src/pipeline.jl | 5 +++++ test/travis_commands.jl | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) 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")