From fe6b3523c326a450c67fd18d9974565e4ce73598 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 1 Jul 2021 11:38:08 -0700 Subject: [PATCH] Change default volume change keys --- README.md | 4 ++-- RedBookPlayer/Settings.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index dc011b5..10ecce4 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ | **[** | Previous Index | | **.** | Fast Forward | | **,** | Rewind | -| **+** | Volume Up | -| **-** | Volume Down | +| **Numpad +** | Volume Up | +| **Numpad -** | Volume Down | | **M** | Mute | | **E** | Toggle Emphasis | \ No newline at end of file diff --git a/RedBookPlayer/Settings.cs b/RedBookPlayer/Settings.cs index 44889d9..cc2d0ff 100644 --- a/RedBookPlayer/Settings.cs +++ b/RedBookPlayer/Settings.cs @@ -102,12 +102,12 @@ namespace RedBookPlayer /// /// Key assigned to raise volume /// - public Key VolumeUpKey { get; set; } = Key.OemPlus; + public Key VolumeUpKey { get; set; } = Key.Add; /// /// Key assigned to lower volume /// - public Key VolumeDownKey { get; set; } = Key.OemMinus; + public Key VolumeDownKey { get; set; } = Key.Subtract; /// /// Key assigned to toggle mute