Skip to content

Commit

Permalink
bump FTA
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Dec 24, 2022
1 parent 60c1291 commit 397e9a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GLMakie/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ColorTypes = "0.9, 0.10, 0.11"
Colors = "0.11, 0.12"
FileIO = "1.6"
FixedPointNumbers = "0.7, 0.8"
FreeTypeAbstraction = "0.10"
FreeTypeAbstraction = "0.11"
GLFW = "3"
GeometryBasics = "0.4.1"
Makie = "=0.19.0"
Expand Down
2 changes: 1 addition & 1 deletion WGLMakie/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
[compat]
Colors = "0.11, 0.12"
FileIO = "1.1"
FreeTypeAbstraction = "0.10"
FreeTypeAbstraction = "0.11"
GeometryBasics = "0.4.1"
Hyperscript = "0.0.3, 0.0.4"
ImageMagick = "1.1"
Expand Down
3 changes: 2 additions & 1 deletion src/conversions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,8 @@ function load_font(str::String)

font = if (ft_path = get(FONT_PATHS, str, nothing)) !== nothing
if (ft = load_font_from_path(ft_path, false)) === nothing
ft = find_and_load_font(str) # can be invalidated on relocation, hard reload
# font path be invalidated on relocation so find the font again, and load it
ft = find_and_load_font(str)
end
ft
elseif isfile(str) # check if the string points to a font file and load that
Expand Down

0 comments on commit 397e9a2

Please sign in to comment.