mirror of
https://github.com/alacritty/alacritty.git
synced 2025-02-10 15:46:10 -05:00
parent
906f14b660
commit
767d59155a
2 changed files with 6 additions and 1 deletions
|
@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Block selection starting from first column after beginning leaves the scrollback
|
- Block selection starting from first column after beginning leaves the scrollback
|
||||||
- Incorrect selection status of the first cell when selection is off screen
|
- Incorrect selection status of the first cell when selection is off screen
|
||||||
- Backwards bracket selection
|
- Backwards bracket selection
|
||||||
|
- Stack overflow when printing shader creation error
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
|
|
@ -88,7 +88,11 @@ impl std::error::Error for Error {
|
||||||
|
|
||||||
impl Display for Error {
|
impl Display for Error {
|
||||||
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
||||||
write!(f, "There was an error initializing the shaders: {}", self)
|
match self {
|
||||||
|
Error::ShaderCreation(err) => {
|
||||||
|
write!(f, "There was an error initializing the shaders: {}", err)
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue