From a087a6694bda09b9c201e4ea0b7d6aa2b15c3cdb Mon Sep 17 00:00:00 2001 From: Andy Nowacki Date: Fri, 6 Jan 2017 16:21:14 +0000 Subject: [PATCH] Use `sans-serif` as default font family (fix #593) Rather than specifying a specific typeface, set the font *family* in the `family` field of `Font` as `sans-serif` by default. Fixes #593. --- src/components.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components.jl b/src/components.jl index 73c62f50..bbb2f9c2 100644 --- a/src/components.jl +++ b/src/components.jl @@ -248,7 +248,7 @@ end function font(args...) # defaults - family = "Helvetica" + family = "sans-serif" pointsize = 14 halign = :hcenter valign = :vcenter