From b2629192ab9926b095d0abe85fedbc353e5e348c Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Mon, 12 Oct 2020 22:13:38 +0000 Subject: Fix incorrect X11 feature check See https://github.com/alacritty/alacritty/commit/721f789b5f98ab5c47e6e817c3c2228636ca0a1a#r43183826. --- alacritty/src/event.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src/event.rs') diff --git a/alacritty/src/event.rs b/alacritty/src/event.rs index d16ffde6..5da2a939 100644 --- a/alacritty/src/event.rs +++ b/alacritty/src/event.rs @@ -767,7 +767,7 @@ impl Processor { /// Return `true` if `event_queue` is empty, `false` otherwise. #[inline] - #[cfg(any(target_os = "macos", windows, not(feature = "wayland")))] + #[cfg(any(not(feature = "wayland"), target_os = "macos", windows))] fn event_queue_empty(&mut self) -> bool { self.event_queue.is_empty() } -- cgit