diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-01-01 05:07:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-01 05:07:39 +0000 |
commit | 8ed72cc065255007a7f0687e3b8a540e8c6202c6 (patch) | |
tree | 97be52ae4c288fcfeb849d1f97f7a5efc9c2dab1 /alacritty/src/event.rs | |
parent | 1723e30d25f0c6068f9532448b016a89aa491a95 (diff) | |
download | r-alacritty-8ed72cc065255007a7f0687e3b8a540e8c6202c6.tar.gz r-alacritty-8ed72cc065255007a7f0687e3b8a540e8c6202c6.tar.bz2 r-alacritty-8ed72cc065255007a7f0687e3b8a540e8c6202c6.zip |
Remove Windows WinPTY backend
Diffstat (limited to 'alacritty/src/event.rs')
-rw-r--r-- | alacritty/src/event.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/alacritty/src/event.rs b/alacritty/src/event.rs index bbb0da0f..b8793f16 100644 --- a/alacritty/src/event.rs +++ b/alacritty/src/event.rs @@ -1118,8 +1118,7 @@ impl<N: Notify + OnResize> Processor<N> { WindowEvent::Resized(size) => { // Minimizing the window sends a Resize event with zero width and // height. But there's no need to ever actually resize to this. - // Both WinPTY & ConPTY have issues when resizing down to zero size - // and back. + // ConPTY has issues when resizing down to zero size and back. #[cfg(windows)] if size.width == 0 && size.height == 0 { return; |