summary refs log tree commit diff
path: root/quantum
diff options
context:
space:
mode:
authorフィルターペーパー <76888457+filterpaper@users.noreply.github.com>2023-07-11 01:57:08 +0800
committerGitHub <noreply@github.com>2023-07-10 10:57:08 -0700
commita05e5b55547af1afccc4468f0452eca654df3ed4 (patch)
treed865d2ff478e7c43321edd377693f1b368088f06 /quantum
parentf651f34c73964e2a21752cb549d9e62f53d04276 (diff)
Add MOUSEKEY_WHEEL_DELTA documentation (#21493)
Diffstat (limited to 'quantum')
-rw-r--r--quantum/mousekey.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/mousekey.h b/quantum/mousekey.h
index e968e000c0..73380b743a 100644
--- a/quantum/mousekey.h
+++ b/quantum/mousekey.h
@@ -44,9 +44,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #            define MOUSEKEY_MOVE_DELTA 8
 #        endif
 #    endif
-#    ifndef MOUSEKEY_WHEEL_DELTA
-#        define MOUSEKEY_WHEEL_DELTA 1
-#    endif
 #    ifndef MOUSEKEY_DELAY
 #        if defined(MK_KINETIC_SPEED)
 #            define MOUSEKEY_DELAY 5
@@ -85,6 +82,9 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #    ifndef MOUSEKEY_WHEEL_INTERVAL
 #        define MOUSEKEY_WHEEL_INTERVAL 80
 #    endif
+#    ifndef MOUSEKEY_WHEEL_DELTA
+#        define MOUSEKEY_WHEEL_DELTA 1
+#    endif
 #    ifndef MOUSEKEY_WHEEL_MAX_SPEED
 #        define MOUSEKEY_WHEEL_MAX_SPEED 8
 #    endif