mirror of
https://github.com/osukey/osukey.git
synced 2025-05-08 07:07:18 +09: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;
|
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[]
|
public IEnumerable<KeyBinding> GlobalKeyBindings => new[]
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user