1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-21 19:37:18 +08:00

Merge pull request #21203 from peppy/change-beamtap-listing-key-vinding

Change default beatmap listing key binding to `Ctrl`+`B`
This commit is contained in:
Dean Herbert 2022-11-11 18:09:09 +09:00 committed by GitHub
commit 1ec537d5c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,7 +78,7 @@ namespace osu.Game.Input.Bindings
new KeyBinding(InputKey.F8, GlobalAction.ToggleChat),
new KeyBinding(InputKey.F6, GlobalAction.ToggleNowPlaying),
new KeyBinding(InputKey.F9, GlobalAction.ToggleSocial),
new KeyBinding(new[] { InputKey.Control, InputKey.D }, GlobalAction.ToggleBeatmapListing),
new KeyBinding(new[] { InputKey.Control, InputKey.B }, GlobalAction.ToggleBeatmapListing),
new KeyBinding(new[] { InputKey.Control, InputKey.O }, GlobalAction.ToggleSettings),
new KeyBinding(new[] { InputKey.Control, InputKey.N }, GlobalAction.ToggleNotifications),
};