From 5506c0543c9330d378703c7cf32f19dc4517e7a6 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Fri, 12 Apr 2019 09:24:28 +0200 Subject: [PATCH] don't let `marker = true` set the marker size to 1 --- src/args.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/args.jl b/src/args.jl index 13423b33..c443b5bb 100644 --- a/src/args.jl +++ b/src/args.jl @@ -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