Skip to content
Permalink
Browse files
Merge pull request #8002 from JMC47/CursorSlowdown
Slow down relative input cursor
  • Loading branch information
JMC47 committed Apr 16, 2019
2 parents 63f30cc + f3aaf5d commit 80d21b8
Showing 1 changed file with 1 addition and 1 deletion.
@@ -41,7 +41,7 @@ class Cursor : public ReshapableInput
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;

0 comments on commit 80d21b8

Please sign in to comment.