From b6b00c843a55423f838e0330ccc52ab2fb121ec9 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Fri, 12 Apr 2019 09:42:19 +0200 Subject: [PATCH] set default to :circle instead of :auto for marker = true --- src/args.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/args.jl b/src/args.jl index c443b5bb..24676d01 100644 --- a/src/args.jl +++ b/src/args.jl @@ -739,7 +739,7 @@ function processMarkerArg(plotattributes::KW, arg) # bool elseif typeof(arg) <: Bool - plotattributes[:markershape] = arg ? :auto : :none + plotattributes[:markershape] = arg ? :circle : :none # markersize elseif allReals(arg)