high-resolution mouse wheels aren't supported in userland yet, so why
don't we fake a high resolution touchpad instead 😄
it's somewhat working, though it seems to crash on startup when
installed (among other weird bugs).
16 lines
256 B
Rust
16 lines
256 B
Rust
mod media;
|
|
mod null;
|
|
mod paddle;
|
|
mod scroll;
|
|
mod scroll_mt;
|
|
mod volume;
|
|
mod zoom;
|
|
|
|
pub use self::media::*;
|
|
pub use self::null::*;
|
|
pub use self::paddle::*;
|
|
pub use self::scroll::*;
|
|
pub use self::scroll_mt::*;
|
|
pub use self::volume::*;
|
|
pub use self::zoom::*;
|