mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
Fix code formatting
This commit is contained in:
parent
34daa1237b
commit
3bfb5958bc
1 changed files with 3 additions and 3 deletions
|
@ -220,7 +220,7 @@ impl crate::Rasterize for DirectWriteRasterizer {
|
|||
// 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
|
||||
Ok(family.get_first_matching_font(weight.into(), FontStretch::Normal, slant.into()))
|
||||
}
|
||||
},
|
||||
Style::Specific(ref style) => {
|
||||
let mut idx = 0;
|
||||
let count = family.get_font_count();
|
||||
|
@ -238,7 +238,7 @@ impl crate::Rasterize for DirectWriteRasterizer {
|
|||
|
||||
idx += 1;
|
||||
}
|
||||
}
|
||||
},
|
||||
}?;
|
||||
|
||||
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::DirectWriteError(hresult) => {
|
||||
write!(f, "A DirectWrite rendering error occurred: {:#X}", hresult)
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue