From d8d695242ed2d84ff9e5addb8774dad1fed2d22e Mon Sep 17 00:00:00 2001 From: Lena Date: Tue, 23 Jul 2024 15:29:39 +0200 Subject: [PATCH] add boss key binding only on windows --- osu.Game/Input/Bindings/GlobalActionContainer.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/osu.Game/Input/Bindings/GlobalActionContainer.cs b/osu.Game/Input/Bindings/GlobalActionContainer.cs index c3d69eeaed..45c8b0c561 100644 --- a/osu.Game/Input/Bindings/GlobalActionContainer.cs +++ b/osu.Game/Input/Bindings/GlobalActionContainer.cs @@ -84,6 +84,8 @@ namespace osu.Game.Input.Bindings public void OnReleased(KeyBindingReleaseEvent e) => handler?.OnReleased(e); + + private static IEnumerable globalKeyBindings => new[] { new KeyBinding(InputKey.Up, GlobalAction.SelectPrevious), @@ -111,7 +113,6 @@ namespace osu.Game.Input.Bindings new KeyBinding(InputKey.F10, GlobalAction.ToggleGameplayMouseButtons), new KeyBinding(InputKey.F12, GlobalAction.TakeScreenshot), - new KeyBinding(InputKey.Insert, GlobalAction.BossKey), };