Fix system font loading (#4714)

This commit is contained in:
Laurenz 2024-08-09 16:44:18 +02:00 committed by GitHub
parent b07607d35e
commit 831062a588
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 {