mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
Translate new ScrollLeft/ScrollRight crossterm mouse events
This commit is contained in:
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 @@ fn from(kind: crossterm::event::MouseEventKind) -> Self {
|
||||
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…
Reference in New Issue
Block a user