From f344b89e3333e28170eaea9c9e795217e492a40a Mon Sep 17 00:00:00 2001 From: Nicholas Bauer Date: Wed, 22 Sep 2021 03:21:22 -0400 Subject: [PATCH] Remove fillcolor for now --- src/colorbars.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/colorbars.jl b/src/colorbars.jl index 109c3a05..c44b7800 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])) zmin, zmax = Inf, -Inf for series in series_list(sp) - if series[:colorbar_entry] && (series[:seriestype] != :shape || series[:fillcolor] === nothing) + if series[:colorbar_entry] && series[:seriestype] != :shape zmin, zmax = _update_clims(zmin, zmax, get_clims(series, op)...) end end @@ -16,7 +16,7 @@ function get_clims(sp::Subplot, op = process_clims(sp[:clims])) end function get_clims(sp::Subplot, series::Series, op = process_clims(sp[:clims])) - series[:seriestype] != :shape || series[:fillcolor] === nothing || return -Inf, Inf + series[:seriestype] != :shape || return -Inf, Inf zmin, zmax = if series[:colorbar_entry] get_clims(sp, op) else