1
0
Files
surface-dial-linux/src/controller/controls/mod.rs
Daniel Prilik 4f25a73eb3 experimental multitouch based smooth scrolling
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).
2020-11-02 18:50:45 -05:00

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::*;