Fix code formatting

This commit is contained in:
Christian Duerr 2020-04-21 00:27:29 +00:00 committed by GitHub
parent 34daa1237b
commit 3bfb5958bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -220,7 +220,7 @@ impl crate::Rasterize for DirectWriteRasterizer {
// This searches for the "best" font - should mean we don't have to worry about // This searches for the "best" font - should mean we don't have to worry about
// fallbacks if our exact desired weight/style isn't available // fallbacks if our exact desired weight/style isn't available
Ok(family.get_first_matching_font(weight.into(), FontStretch::Normal, slant.into())) Ok(family.get_first_matching_font(weight.into(), FontStretch::Normal, slant.into()))
} },
Style::Specific(ref style) => { Style::Specific(ref style) => {
let mut idx = 0; let mut idx = 0;
let count = family.get_font_count(); let count = family.get_font_count();
@ -238,7 +238,7 @@ impl crate::Rasterize for DirectWriteRasterizer {
idx += 1; idx += 1;
} }
} },
}?; }?;
let key = FontKey::next(); let key = FontKey::next();
@ -288,7 +288,7 @@ impl Display for Error {
Error::FontNotLoaded => f.write_str("Tried to use a font that hasn't been loaded"), Error::FontNotLoaded => f.write_str("Tried to use a font that hasn't been loaded"),
Error::DirectWriteError(hresult) => { Error::DirectWriteError(hresult) => {
write!(f, "A DirectWrite rendering error occurred: {:#X}", hresult) write!(f, "A DirectWrite rendering error occurred: {:#X}", hresult)
} },
} }
} }
} }