This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Reduce Magic Trackpad two-finger scroll speed by scaling multitouch motion. | |
| -- The curve is { touchpad-coordinate-units-per-ms, multiplier }. | |
| -- Low speeds stay precise; fast swipes are slowed less. | |
| local SCROLL_SPEED_CURVE = { | |
| { 0.0, 0.25 }, | |
| { 1.0, 0.25 }, | |
| { 4.0, 0.40 }, | |
| { 10.0, 0.65 }, | |
| { 25.0, 0.90 }, | |
| } |