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
+4
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