Merge pull request #1995 from daschw/marker

don't let `marker = true` set the marker size to 1 (fix #1994)
This commit is contained in:
Daniel Schwabeneder 2019-04-12 14:12:40 +02:00 committed by GitHub
commit 72696a4326
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ? :circle : :none
# markersize
elseif allReals(arg)
plotattributes[:markersize] = arg