cargo fmt

This commit is contained in:
Vinzenz Schroeter 2025-01-26 13:16:19 +01:00
commit 9d8e2f28c4
6 changed files with 38 additions and 17 deletions

View file

@ -60,7 +60,10 @@ impl FontRenderer8x8 {
pub fn from_name(family_name: String) -> Self {
let font = SystemSource::new()
.select_best_match(&[FamilyName::Title(family_name)], &Properties::new())
.select_best_match(
&[FamilyName::Title(family_name)],
&Properties::new(),
)
.unwrap()
.load()
.unwrap();