Update Alacritty

This commit is contained in:
Julia 2023-07-27 12:19:07 -04:00
parent f2b82369f2
commit 8c9c8362ec
3 changed files with 316 additions and 30 deletions

View file

@ -114,11 +114,7 @@ fn rgb_for_index(i: &u8) -> (u8, u8, u8) {
//Convenience method to convert from a GPUI color to an alacritty Rgb
pub fn to_alac_rgb(color: Color) -> AlacRgb {
AlacRgb {
r: color.r,
g: color.g,
b: color.g,
}
AlacRgb::new(color.r, color.g, color.g)
}
#[cfg(test)]