diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-10-25 19:24:36 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-10-26 06:55:32 +0200 |
commit | f332f55a59d5cfbe24927f4543442e449cc5a999 (patch) | |
tree | a3669f53fca32275c1dc6cca1064fc6d09dac565 | |
parent | 3e86371a69943039ce1d287b0a4f37f8726e637f (diff) |
gui/mapping: set snap higher for more precision
Previous snap values were so low that getting the exact value
required pixel-perfect accuracy. Fix that.
-rw-r--r-- | gui/mapping-window.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/mapping-window.cpp b/gui/mapping-window.cpp index 57357765..879541de 100644 --- a/gui/mapping-window.cpp +++ b/gui/mapping-window.cpp @@ -74,9 +74,9 @@ void MapWidget::reload() } if (qfcs[i].axis >= 3) - qfcs[i].qfc->set_snap(1, 1); + qfcs[i].qfc->set_snap(1, 2.5); else - qfcs[i].qfc->set_snap(.5, .5); + qfcs[i].qfc->set_snap(.5, 1); } } |