Merge pull request #8002 from JMC47/CursorSlowdown

Slow down relative input cursor
This commit is contained in:
JMC47
2019-04-15 20:43:31 -04:00
committed by GitHub

View File

@ -41,7 +41,7 @@ public:
private:
// This is used to reduce the cursor speed for relative input
// to something that makes sense with the default range.
static constexpr double STEP_PER_SEC = 0.04 * 200;
static constexpr double STEP_PER_SEC = 0.01 * 200;
// Smooth out forward/backward movements:
static constexpr double STEP_Z_PER_SEC = 0.05 * 200;