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:
commit
72696a4326
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user