From 750f96cca7417894d628d109bb134f53d3667801 Mon Sep 17 00:00:00 2001 From: Michael Kraus Date: Fri, 6 Dec 2019 09:34:40 +0100 Subject: [PATCH] allow for generalized arrays in pgfplots backend --- src/backends/pgfplots.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/backends/pgfplots.jl b/src/backends/pgfplots.jl index 65938d90..378473c5 100644 --- a/src/backends/pgfplots.jl +++ b/src/backends/pgfplots.jl @@ -180,11 +180,11 @@ function pgf_series(sp::Subplot, series::Series) end # PGFPlots can't handle non-Vector? - args = map(a -> if typeof(a) <: AbstractVector && typeof(a) != Vector - collect(a) - else - a - end, args) + # args = map(a -> if typeof(a) <: AbstractVector && typeof(a) != Vector + # collect(a) + # else + # a + # end, args) if st in (:contour, :histogram2d) style = []