From 25eebcbe1a976528f180bf5b8e020c69d830ad24 Mon Sep 17 00:00:00 2001 From: Nicholas Bauer Date: Wed, 22 Sep 2021 03:17:50 -0400 Subject: [PATCH] For Shape type, cut off process --- src/colorbars.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/colorbars.jl b/src/colorbars.jl index 80726af7..7f0785b5 100644 --- a/src/colorbars.jl +++ b/src/colorbars.jl @@ -8,7 +8,7 @@ process_clims(f) = f function get_clims(sp::Subplot, op = process_clims(sp[:clims]))::Tuple{Float64, Float64} zmin, zmax = Inf, -Inf for series in series_list(sp) - if series[:colorbar_entry] + if series[:colorbar_entry] && (series[:seriestype] != :shape || series[:fillcolor] === nothing) zmin, zmax = _update_clims(zmin, zmax, get_clims(series, op)...) end end