From c2f8abecfbaf6b6388e7746b733b7f22cbb7a750 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sat, 7 Oct 2023 12:56:11 -0700 Subject: Port from mio to polling This patch replaces the mio crate with the polling. Now that smol-rs/polling#96 has been merged, we should be at full feature parity with mio v0.6 now. Fixes #7104. Fixes #6486. --- alacritty/src/window_context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src') diff --git a/alacritty/src/window_context.rs b/alacritty/src/window_context.rs index 06dd68d6..6a536ca4 100644 --- a/alacritty/src/window_context.rs +++ b/alacritty/src/window_context.rs @@ -569,6 +569,6 @@ impl WindowContext { impl Drop for WindowContext { fn drop(&mut self) { // Shutdown the terminal's PTY. - let _ = self.notifier.0.send(Msg::Shutdown); + self.notifier.0.send(Msg::Shutdown); } } -- cgit