transfer commit

This commit is contained in:
Simon Christ 2019-09-20 12:14:05 +02:00 committed by Simon Christ
parent 475d1c2398
commit 4e37b59281

View File

@ -252,7 +252,7 @@ function pgf_series(sp::Subplot, series::Series)
else else
PGFPlots.Linear PGFPlots.Linear
end end
push!(series_collection, func(seg_args...; kw...)) push!(series_collection, func(seg_args...; kw..., plotattributes[:extra_kwargs]...))
end end
end end
series_collection series_collection
@ -307,7 +307,7 @@ function pgf_fill_legend_hack(plotattributes, args)
else else
PGFPlots.Linear PGFPlots.Linear
end end
return func(([arg[1]] for arg in args)...; kw...) return func(([arg[1]] for arg in args)...; kw..., plotattributes[:extra_kwargs]...)
end end
# ---------------------------------------------------------------- # ----------------------------------------------------------------