fix it again (#2694)

This commit is contained in:
Simon Christ 2020-05-11 16:51:38 +02:00 committed by GitHub
parent ae43e05f6f
commit 1963cee94a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -160,9 +160,9 @@ end
function RecipesPipeline.process_sliced_series_attributes!(plt::Plots.Plot, kw_list) function RecipesPipeline.process_sliced_series_attributes!(plt::Plots.Plot, kw_list)
# swap errors # swap errors
err_inds = findall(kw -> get(kw, :seriestype, nothing) in (:xerror, :yerror, :zerror), kw_list) err_inds = findall(kw -> get(kw, :seriestype, :path) in (:xerror, :yerror, :zerror), kw_list)
for ind in err_inds for ind in err_inds
if kw_list[ind-1][:seriestype] == :scatter if get(kw_list[ind-1],:seriestype,:path) == :scatter
tmp = copy(kw_list[ind]) tmp = copy(kw_list[ind])
kw_list[ind] = copy(kw_list[ind-1]) kw_list[ind] = copy(kw_list[ind-1])
kw_list[ind-1] = tmp kw_list[ind-1] = tmp