Fix incorrect indent

This commit is contained in:
Bartłomiej Dach 2023-04-05 19:47:25 +02:00
parent 432f698697
commit e5d57a65c9
No known key found for this signature in database

View File

@ -166,10 +166,10 @@ namespace osu.Game.Rulesets.UI
keyCounter.SetReceptor(receptor);
keyCounter.AddRange(KeyBindingContainer.DefaultKeyBindings
.Select(b => b.GetAction<T>())
.Distinct()
.OrderBy(action => action)
.Select(action => new KeyCounterActionTrigger<T>(action)));
.Select(b => b.GetAction<T>())
.Distinct()
.OrderBy(action => action)
.Select(action => new KeyCounterActionTrigger<T>(action)));
}
private partial class ActionReceptor : KeyCounterDisplay.Receptor, IKeyBindingHandler<T>