From daf93ba4272b90cc5774a9e569cd07d3a725b788 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Thu, 31 Oct 2024 09:59:49 +0100 Subject: [PATCH] comments --- ext/FreeTypeExt.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/FreeTypeExt.jl b/ext/FreeTypeExt.jl index 90f83579..b32da425 100644 --- a/ext/FreeTypeExt.jl +++ b/ext/FreeTypeExt.jl @@ -459,8 +459,8 @@ function __init__() # so we supply a way to help it with an environment variable. font_paths = if Sys.isapple() # COV_EXCL_LINE [ - "/Library/Fonts", # additional fonts that can be used by all users. This is generally where fonts go if they are to be used by other applications. - joinpath(homedir(), "Library/Fonts"), # Fonts specific to each user. + "/Library/Fonts", # additional fonts that can be used by all users: this is generally where fonts go if they are to be used by other applications + joinpath(homedir(), "Library/Fonts"), # fonts specific to each user "/Network/Library/Fonts", # fonts shared for users on a network "/System/Library/Fonts", # system specific fonts "/System/Library/Fonts/Supplemental", # new location since Catalina