From f82cb6d76798fb0491ddca0ef9ff194919c652d4 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 11 Jun 2025 19:49:33 +0900 Subject: [PATCH] Fix textbox shift-left/right conflicting with new group changing bindings --- osu.Game/Screens/SelectV2/FilterControl.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/osu.Game/Screens/SelectV2/FilterControl.cs b/osu.Game/Screens/SelectV2/FilterControl.cs index 4700842a96..c0ccf0ab93 100644 --- a/osu.Game/Screens/SelectV2/FilterControl.cs +++ b/osu.Game/Screens/SelectV2/FilterControl.cs @@ -279,6 +279,10 @@ namespace osu.Game.Screens.SelectV2 public override bool OnPressed(KeyBindingPressEvent e) { + // Conflicts with default group navigation keys (shift-left shift-right). + if (e.Action == PlatformAction.SelectBackwardChar || e.Action == PlatformAction.SelectForwardChar) + return false; + // the "cut" platform key binding (shift-delete) conflicts with the beatmap deletion action. if (e.Action == PlatformAction.Cut && e.ShiftPressed && e.CurrentState.Keyboard.Keys.IsPressed(Key.Delete)) return false;