Translate new ScrollLeft/ScrollRight crossterm mouse events

pull/4642/merge
Michael Davis 10 months ago committed by Blaž Hrastnik
parent e8fef6b6fc
commit 050c019ccb

@ -43,6 +43,10 @@ pub enum MouseEventKind {
ScrollDown,
/// Scrolled mouse wheel upwards (away from the user).
ScrollUp,
/// Scrolled mouse wheel leftwards.
ScrollLeft,
/// Scrolled mouse wheel rightwards.
ScrollRight,
}
/// Represents a mouse button.
@ -458,6 +462,8 @@ impl From<crossterm::event::MouseEventKind> for MouseEventKind {
crossterm::event::MouseEventKind::Moved => Self::Moved,
crossterm::event::MouseEventKind::ScrollDown => Self::ScrollDown,
crossterm::event::MouseEventKind::ScrollUp => Self::ScrollUp,
crossterm::event::MouseEventKind::ScrollLeft => Self::ScrollLeft,
crossterm::event::MouseEventKind::ScrollRight => Self::ScrollRight,
}
}
}

Loading…
Cancel
Save