fix fillrange for shape; travis fix

This commit is contained in:
Thomas Breloff 2016-07-12 12:53:03 -04:00
parent f1bd7ab1dc
commit 1ad9a7e176
2 changed files with 8 additions and 1 deletions

View File

@ -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)

View File

@ -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")