mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 07:09:53 +08:00
Fix missing default inclusion
This commit is contained in:
@@ -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[]
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user