diff options
author | 2019-10-29 19:00:46 +0100 | |
---|---|---|
committer | 2019-10-29 19:00:46 +0100 | |
commit | bd5d871eb6630bc8f987d72c771032f878fb91b6 (patch) | |
tree | 528784f51a84abb0863590864a4af8f854d462e2 /native/src/input/mouse.rs | |
parent | 29588f604af66fb4911f791c0c402fccd30ba64b (diff) | |
download | iced-bd5d871eb6630bc8f987d72c771032f878fb91b6.tar.gz iced-bd5d871eb6630bc8f987d72c771032f878fb91b6.tar.bz2 iced-bd5d871eb6630bc8f987d72c771032f878fb91b6.zip |
Handle touchpad scroll events
Diffstat (limited to 'native/src/input/mouse.rs')
-rw-r--r-- | native/src/input/mouse.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/input/mouse.rs b/native/src/input/mouse.rs index d37f5b96..69dc6b4c 100644 --- a/native/src/input/mouse.rs +++ b/native/src/input/mouse.rs @@ -3,4 +3,4 @@ mod button; mod event; pub use button::Button; -pub use event::Event; +pub use event::{Event, ScrollDelta}; |