fix magic fill argument
This commit is contained in:
parent
7c257a09f6
commit
7f6fe09a00
@ -751,6 +751,10 @@ function processFillArg(d::KW, arg)
|
|||||||
elseif allAlphas(arg)
|
elseif allAlphas(arg)
|
||||||
d[:fillalpha] = arg
|
d[:fillalpha] = arg
|
||||||
|
|
||||||
|
# fillrange provided as vector or number
|
||||||
|
elseif typeof(arg) <: Union{AbstractArray{<:Real}, Real}
|
||||||
|
d[:fillrange] = arg
|
||||||
|
|
||||||
elseif !handleColors!(d, arg, :fillcolor)
|
elseif !handleColors!(d, arg, :fillcolor)
|
||||||
|
|
||||||
d[:fillrange] = arg
|
d[:fillrange] = arg
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user