summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Didron <fdidron@users.noreply.github.com>2019-04-30 15:42:23 +0900
committerGitHub <noreply@github.com>2019-04-30 15:42:23 +0900
commit59d28fe2884c0639ef020ece3e1bc6967ab0881f (patch)
treee68763fd2260b3c148086e4dd0eb77fc8c6a26bb
parentfd06a342eeb29e8279545c138d856854c29bcaca (diff)
parentc382378a353a06e26f2d97b4b89111762c2878e1 (diff)
Merge pull request #34 from zsa/fix/mouse_movement
Re-fix Mousekey Movements
-rw-r--r--tmk_core/common/mousekey.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/common/mousekey.c b/tmk_core/common/mousekey.c
index 8c91843063..5b85268a03 100644
--- a/tmk_core/common/mousekey.c
+++ b/tmk_core/common/mousekey.c
@@ -114,7 +114,9 @@ void mousekey_task(void) {
/* diagonal move [1/sqrt(2)] */
if (mouse_report.x && mouse_report.y) {
mouse_report.x = times_inv_sqrt2(mouse_report.x);
+ mouse_report.x = mouse_report.x == 0 ? 1 : mouse_report.x;
mouse_report.y = times_inv_sqrt2(mouse_report.y);
+ mouse_report.y = mouse_report.y == 0 ? 1 : mouse_report.y;
}
if (mouse_report.v > 0) mouse_report.v = wheel_unit();
if (mouse_report.v < 0) mouse_report.v = wheel_unit() * -1;
@@ -232,7 +234,9 @@ void adjust_speed(void) {
// adjust for diagonals
if (mouse_report.x && mouse_report.y) {
mouse_report.x = times_inv_sqrt2(mouse_report.x);
+ mouse_report.x = mouse_report.x == 0 ? 1 : mouse_report.x;
mouse_report.y = times_inv_sqrt2(mouse_report.y);
+ mouse_report.y = mouse_report.y == 0 ? 1 : mouse_report.y;
}
if (mouse_report.h && mouse_report.v) {
mouse_report.h = times_inv_sqrt2(mouse_report.h);