mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Fix clippy warnings
This commit is contained in:
parent
935aee6165
commit
564eb65201
2 changed files with 4 additions and 0 deletions
|
@ -917,6 +917,7 @@ impl<'a, N: Notify + 'a, T: EventListener> input::ActionContext<T> for ActionCon
|
|||
self.config
|
||||
}
|
||||
|
||||
#[cfg(target_os = "macos")]
|
||||
fn event_loop(&self) -> &EventLoopWindowTarget<Event> {
|
||||
self.event_loop
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@ use winit::dpi::PhysicalPosition;
|
|||
use winit::event::{
|
||||
ElementState, Modifiers, MouseButton, MouseScrollDelta, Touch as TouchEvent, TouchPhase,
|
||||
};
|
||||
#[cfg(target_os = "macos")]
|
||||
use winit::event_loop::EventLoopWindowTarget;
|
||||
use winit::keyboard::ModifiersState;
|
||||
#[cfg(target_os = "macos")]
|
||||
|
@ -103,6 +104,7 @@ pub trait ActionContext<T: EventListener> {
|
|||
fn pop_message(&mut self) {}
|
||||
fn message(&self) -> Option<&Message>;
|
||||
fn config(&self) -> &UiConfig;
|
||||
#[cfg(target_os = "macos")]
|
||||
fn event_loop(&self) -> &EventLoopWindowTarget<Event>;
|
||||
fn mouse_mode(&self) -> bool;
|
||||
fn clipboard_mut(&mut self) -> &mut Clipboard;
|
||||
|
@ -1216,6 +1218,7 @@ mod tests {
|
|||
self.clipboard
|
||||
}
|
||||
|
||||
#[cfg(target_os = "macos")]
|
||||
fn event_loop(&self) -> &EventLoopWindowTarget<Event> {
|
||||
unimplemented!();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue