mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
Fix selection not inverting terminal background
Fixes a regression introduced in
9a0555bbba
where the terminal background
would not get inverted when selected.
This commit is contained in:
parent
9a0555bbba
commit
87cf14a4b7
1 changed files with 2 additions and 0 deletions
|
@ -289,6 +289,8 @@ impl RenderableCell {
|
||||||
// Invert cell fg and bg colors
|
// Invert cell fg and bg colors
|
||||||
mem::swap(&mut fg_rgb, &mut bg_rgb);
|
mem::swap(&mut fg_rgb, &mut bg_rgb);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bg_alpha = 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Override selection text with config colors
|
// Override selection text with config colors
|
||||||
|
|
Loading…
Reference in a new issue