mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-25 14:05:41 -05:00
parent
0a73312c3d
commit
53c7489217
2 changed files with 2 additions and 1 deletions
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fix color issue in ncurses programs by updating terminfo pairs from 0x10000 to 0x7FFF
|
- Fix color issue in ncurses programs by updating terminfo pairs from 0x10000 to 0x7FFF
|
||||||
|
- Fix panic after quitting Alacritty on macOS
|
||||||
|
|
||||||
## Version 0.2.4
|
## Version 0.2.4
|
||||||
|
|
||||||
|
|
|
@ -426,7 +426,7 @@ impl<T> EventLoop<T>
|
||||||
// The evented instances are not dropped here so deregister them explicitly
|
// The evented instances are not dropped here so deregister them explicitly
|
||||||
// TODO: Is this still necessary?
|
// TODO: Is this still necessary?
|
||||||
let _ = self.poll.deregister(&self.rx);
|
let _ = self.poll.deregister(&self.rx);
|
||||||
self.pty.deregister(&self.poll).unwrap();
|
let _ = self.pty.deregister(&self.poll);
|
||||||
|
|
||||||
(self, state)
|
(self, state)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue