1
0

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).
This commit is contained in:
Daniel Prilik
2020-11-02 18:50:45 -05:00
parent 3285021903
commit 4f25a73eb3
7 changed files with 4905 additions and 57 deletions

View File

@@ -2,6 +2,7 @@ mod media;
mod null;
mod paddle;
mod scroll;
mod scroll_mt;
mod volume;
mod zoom;
@@ -9,5 +10,6 @@ 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::*;