From 6c84624d713bfdc0d939508f49ac71fdf76984d9 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Wed, 27 Sep 2017 23:22:55 +0200 Subject: [PATCH] fix pgfplots --- src/backends/pgfplots.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/pgfplots.jl b/src/backends/pgfplots.jl index 046a4def..97d68421 100644 --- a/src/backends/pgfplots.jl +++ b/src/backends/pgfplots.jl @@ -280,7 +280,7 @@ function pgf_axis(sp::Subplot, letter) kw[Symbol(letter,:max)] = lims[2] end - if !(axis[:ticks] in (nothing, false, :none, :auto)) + if !(axis[:ticks] in (nothing, false, :none)) ticks = get_ticks(axis) push!(style, string(letter, "tick = {", join(ticks[1],","), "}")) push!(style, string(letter, "ticklabels = {", join(ticks[2],","), "}"))