From a4d5c8bef00e73738bfa38f172d466027f0bc675 Mon Sep 17 00:00:00 2001 From: Nicholas Bauer Date: Thu, 23 Sep 2021 21:53:39 -0400 Subject: [PATCH] Remove debug println, add hook for updating clims after series added --- src/colorbars.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/colorbars.jl b/src/colorbars.jl index 731e1b28..47fe8cc0 100644 --- a/src/colorbars.jl +++ b/src/colorbars.jl @@ -34,7 +34,6 @@ which must return the tuple `(zmin, zmax)`. The value is stored as a series prop retrieved by `get_clims`. """ function update_clims(series::Series, op = ignorenan_extrema)::Tuple{Float64, Float64} - println(" series") zmin, zmax = Inf, -Inf z_colored_series = (:contour, :contour3d, :heatmap, :histogram2d, :surface, :hexbin) for vals in ( @@ -97,4 +96,5 @@ end function _update_subplot_colorbars(sp::Subplot) # Dynamic callback from the pipeline if needed + update_clims(sp) end