Commit 8c6c1e78 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32: do not map Volume keys by default

On Windows, it seems people expect volume keys to control the master
volume...
I'm not going to fight this fight with our users during support...

Ref #9373
parent a6a85ef9
...@@ -2292,8 +2292,15 @@ vlc_module_begin () ...@@ -2292,8 +2292,15 @@ vlc_module_begin ()
# define KEY_NAV_LEFT "Left" # define KEY_NAV_LEFT "Left"
# define KEY_NAV_RIGHT "Right" # define KEY_NAV_RIGHT "Right"
# define KEY_QUIT "Ctrl+q" # define KEY_QUIT "Ctrl+q"
#ifdef _WIN32 /* On Windows, people expect volume keys to control the master */
# define KEY_VOL_UP "Ctrl+Up"
# define KEY_VOL_DOWN "Ctrl+Down"
#else
# define KEY_VOL_UP "Ctrl+Up\tVolume Up" # define KEY_VOL_UP "Ctrl+Up\tVolume Up"
# define KEY_VOL_DOWN "Ctrl+Down\tVolume Down" # define KEY_VOL_DOWN "Ctrl+Down\tVolume Down"
#endif
# define KEY_VOL_MUTE "m\tVolume Mute" # define KEY_VOL_MUTE "m\tVolume Mute"
# define KEY_SUBDELAY_UP "h" # define KEY_SUBDELAY_UP "h"
# define KEY_SUBDELAY_DOWN "g" # define KEY_SUBDELAY_DOWN "g"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment