diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-08-09 16:44:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-09 14:44:18 +0000 |
| commit | 831062a5880b42d20a5f819175c3d2d2e8b2e724 (patch) | |
| tree | db6037c772ee1d6dbd77dd21ce2fee72331e48dc | |
| parent | b07607d35e697be3dd5e56945b16afa8103a491e (diff) | |
Fix system font loading (#4714)
| -rw-r--r-- | crates/typst-cli/src/world.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-cli/src/world.rs b/crates/typst-cli/src/world.rs index 70c63355..7cec4101 100644 --- a/crates/typst-cli/src/world.rs +++ b/crates/typst-cli/src/world.rs @@ -113,7 +113,7 @@ impl SystemWorld { }; let fonts = Fonts::searcher() - .include_system_fonts(command.font_args.ignore_system_fonts) + .include_system_fonts(!command.font_args.ignore_system_fonts) .search_with(&command.font_args.font_paths); let now = match command.creation_timestamp { |
