don't let marker = true set the marker size to 1

This commit is contained in:
Daniel Schwabeneder 2019-04-12 09:24:28 +02:00
parent a6e60aea04
commit 5506c0543c

View File

@ -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