don't let marker = true set the marker size to 1
This commit is contained in:
parent
a6e60aea04
commit
5506c0543c
@ -737,6 +737,10 @@ function processMarkerArg(plotattributes::KW, arg)
|
||||
elseif allAlphas(arg)
|
||||
plotattributes[:markeralpha] = arg
|
||||
|
||||
# bool
|
||||
elseif typeof(arg) <: Bool
|
||||
plotattributes[:markershape] = arg ? :auto : :none
|
||||
|
||||
# markersize
|
||||
elseif allReals(arg)
|
||||
plotattributes[:markersize] = arg
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user