diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2010-10-16 16:13:59 +0200 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2010-10-16 16:26:53 +0200 |
| commit | 67fbc257c0fd943d72a5bf1ba1e2766f4477019b (patch) | |
| tree | 86ad8cc170bd2999b5cbf23de4c68baf72cff994 | |
| parent | 9b60b3ec355f91cad0323b4063267056c3971a90 (diff) | |
Increase vscroll speed by a factor of two
The default two-finger scroll is somewhat slow; double it.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
| -rw-r--r-- | driver/multitouch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/multitouch.c b/driver/multitouch.c index f232914..c9b8bce 100644 --- a/driver/multitouch.c +++ b/driver/multitouch.c | |||
| @@ -27,7 +27,7 @@ | |||
| 27 | #endif | 27 | #endif |
| 28 | 28 | ||
| 29 | /* these should be user-configurable at some point */ | 29 | /* these should be user-configurable at some point */ |
| 30 | static const float vscroll_fraction = 0.05; | 30 | static const float vscroll_fraction = 0.025; |
| 31 | static const float hscroll_fraction = 0.05; | 31 | static const float hscroll_fraction = 0.05; |
| 32 | static const float vswipe_fraction = 0.25; | 32 | static const float vswipe_fraction = 0.25; |
| 33 | static const float hswipe_fraction = 0.25; | 33 | static const float hswipe_fraction = 0.25; |
