mirror of https://github.com/stelzo/typst.git
Fix system font loading (#4714)
This commit is contained in:
parent
b07607d35e
commit
831062a588
|
|
@ -113,7 +113,7 @@ impl SystemWorld {
|
||||||
};
|
};
|
||||||
|
|
||||||
let fonts = Fonts::searcher()
|
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);
|
.search_with(&command.font_args.font_paths);
|
||||||
|
|
||||||
let now = match command.creation_timestamp {
|
let now = match command.creation_timestamp {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue