1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00

Rename class to match derived class

This commit is contained in:
Dean Herbert 2020-09-08 18:10:14 +09:00
parent 8b1151284c
commit b1110e5e3a
2 changed files with 2 additions and 2 deletions

View File

@ -648,7 +648,7 @@ namespace osu.Game
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 };

View File

@ -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; }