summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2023-08-29 20:32:03 +0200
committerNiklas Haas <github-daiK1o@haasn.dev>2023-08-29 20:56:41 +0200
commit981a9372ff0034178a986f8bc1ec1ad6b973bb6c (patch)
tree8a31a71251213b22126aad5bbce16b580aeedd7f /etc
parentdf613cef4c6736c19c4e4be2250936f7dbd74037 (diff)
downloadmpv-981a9372ff0034178a986f8bc1ec1ad6b973bb6c.tar.bz2
mpv-981a9372ff0034178a986f8bc1ec1ad6b973bb6c.tar.xz
input.conf: swap wheel up/down with wheel left/right
Wheel being seek by default is very unintuitive and surprising to a lot of users. It seems to be one of the things most consistently complained about in the default UI. I change this on all of my devices, and so do many others. It's trivial for users who like the old behavior to change it back.
Diffstat (limited to 'etc')
-rw-r--r--etc/input.conf8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/input.conf b/etc/input.conf
index 24c466990e..cc98279578 100644
--- a/etc/input.conf
+++ b/etc/input.conf
@@ -37,10 +37,10 @@
# Mouse wheels, touchpad or other input devices that have axes
# if the input devices supports precise scrolling it will also scale the
# numeric value accordingly
-#WHEEL_UP seek 10 # seek 10 seconds forward
-#WHEEL_DOWN seek -10 # seek 10 seconds backward
-#WHEEL_LEFT add volume -2
-#WHEEL_RIGHT add volume 2
+#WHEEL_UP add volume 2
+#WHEEL_DOWN add volume -2
+#WHEEL_LEFT seek -10 # seek 10 seconds backward
+#WHEEL_RIGHT seek 10 # seek 10 seconds forward
## Seek units are in seconds, but note that these are limited by keyframes
#RIGHT seek 5 # seek 5 seconds forward