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

Fix missing default inclusion

This commit is contained in:
Dean Herbert 2020-06-15 13:46:16 +09:00
parent eb3eb70a65
commit 080bf1e85a

View File

@ -21,7 +21,10 @@ namespace osu.Game.Input.Bindings
handler = game;
}
public override IEnumerable<KeyBinding> DefaultKeyBindings => GlobalKeyBindings.Concat(InGameKeyBindings).Concat(AudioControlKeyBindings);
public override IEnumerable<KeyBinding> DefaultKeyBindings => GlobalKeyBindings
.Concat(InGameKeyBindings)
.Concat(AudioControlKeyBindings)
.Concat(SongSelectKeyBindings);
public IEnumerable<KeyBinding> GlobalKeyBindings => new[]
{