Merge pull request #491 from KristofferC/patch-1

stop double adding style options to the axis in pgfplots
This commit is contained in:
Tom Breloff 2016-09-16 11:12:55 -04:00 committed by GitHub
commit 792df32e69

View File

@ -254,9 +254,6 @@ function _update_plot_object(plt::Plot{PGFPlotsBackend})
axisstyle, axiskw = pgf_axis(sp, letter) axisstyle, axiskw = pgf_axis(sp, letter)
append!(style, axisstyle) append!(style, axisstyle)
merge!(kw, axiskw) merge!(kw, axiskw)
for sty in axisstyle
push!(style, sty)
end
end end
end end