1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 11:47:24 +08:00

replace empty keybinding array with input key type of None

This commit is contained in:
Leander Furumo 2024-10-14 00:00:45 +02:00
parent 0e768cc517
commit 379794c462
No known key found for this signature in database
GPG Key ID: 0DC67A403AB6D120

View File

@ -101,7 +101,7 @@ namespace osu.Game.Input.Bindings
new KeyBinding(new[] { InputKey.Alt, InputKey.Home }, GlobalAction.Home),
new KeyBinding(new[] { InputKey.None }, GlobalAction.ToggleFPSDisplay),
new KeyBinding(InputKey.None, GlobalAction.ToggleFPSDisplay),
new KeyBinding(new[] { InputKey.Control, InputKey.T }, GlobalAction.ToggleToolbar),
new KeyBinding(new[] { InputKey.Control, InputKey.Shift, InputKey.S }, GlobalAction.ToggleSkinEditor),