mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 04:52:57 +08:00
Removed unnecessary casting of KeyBindingRow.FilterTerms
This commit is contained in:
parent
24e14ec62a
commit
1e0ce6dabd
@ -47,7 +47,7 @@ namespace osu.Game.Overlays.KeyBinding
|
||||
|
||||
private FillFlowContainer<KeyButton> buttons;
|
||||
|
||||
public IEnumerable<string> FilterTerms => new[] { text.Text }.Concat(bindings.Select(b => b.KeyCombination.ReadableString())).ToArray();
|
||||
public IEnumerable<string> FilterTerms => new[] { text.Text }.Concat(bindings.Select(b => b.KeyCombination.ReadableString()));
|
||||
|
||||
public KeyBindingRow(object action, IEnumerable<Framework.Input.Bindings.KeyBinding> bindings)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user