From b1110e5e3a1778a4cf5075728194e524c468f0c1 Mon Sep 17 00:00:00 2001
From: Dean Herbert <pe@ppy.sh>
Date: Tue, 8 Sep 2020 18:10:14 +0900
Subject: [PATCH] Rename class to match derived class

---
 osu.Game/OsuGame.cs                                             | 2 +-
 .../Music/{MusicActionHandler.cs => MusicKeyBindingHandler.cs}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename osu.Game/Overlays/Music/{MusicActionHandler.cs => MusicKeyBindingHandler.cs} (96%)

diff --git a/osu.Game/OsuGame.cs b/osu.Game/OsuGame.cs
index a73469d836..b4e671d0b0 100644
--- a/osu.Game/OsuGame.cs
+++ b/osu.Game/OsuGame.cs
@@ -648,7 +648,7 @@ protected override void LoadComplete()
             chatOverlay.State.ValueChanged += state => channelManager.HighPollRate.Value = state.NewValue == Visibility.Visible;
 
             Add(externalLinkOpener = new ExternalLinkOpener());
-            Add(new MusicActionHandler());
+            Add(new MusicKeyBindingHandler());
 
             // side overlays which cancel each other.
             var singleDisplaySideOverlays = new OverlayContainer[] { Settings, notifications };
diff --git a/osu.Game/Overlays/Music/MusicActionHandler.cs b/osu.Game/Overlays/Music/MusicKeyBindingHandler.cs
similarity index 96%
rename from osu.Game/Overlays/Music/MusicActionHandler.cs
rename to osu.Game/Overlays/Music/MusicKeyBindingHandler.cs
index cd8548c1c0..78e6ba1381 100644
--- a/osu.Game/Overlays/Music/MusicActionHandler.cs
+++ b/osu.Game/Overlays/Music/MusicKeyBindingHandler.cs
@@ -14,7 +14,7 @@ namespace osu.Game.Overlays.Music
     /// <summary>
     /// Handles <see cref="GlobalAction"/> relating to music playback, and displays a <see cref="Toast"/> via the cached <see cref="OnScreenDisplay"/> accordingly.
     /// </summary>
-    public class MusicActionHandler : Component, IKeyBindingHandler<GlobalAction>
+    public class MusicKeyBindingHandler : Component, IKeyBindingHandler<GlobalAction>
     {
         [Resolved]
         private IBindable<WorkingBeatmap> beatmap { get; set; }