Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #151
Most installations of X11 on macOS include a
Vera.ttf
font that is incapable of displaying common Unicode characters.Also, interpret the font family
modern
assans-serif
. We useFont('modern')
in a number of tests to get a "default font". If we go throughKivaFontTrait('modern')
, that will parse down toFont('')
, which picks upsans-serif
anyways. This makes both codepaths consistent. Otherwise,Font('modern')
tries to find a typeface actually named "modern" when it's intended as a general family, likesans-serif
. This causes warnings in these tests as it falls back to the arbitrary default font instead of looking for a propersans-serif
font.