mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:57:52 +08:00
Fix missing default inclusion
This commit is contained in:
parent
eb3eb70a65
commit
080bf1e85a
@ -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[]
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user