We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 432f698 commit e5d57a6Copy full SHA for e5d57a6
osu.Game/Rulesets/UI/RulesetInputManager.cs
@@ -166,10 +166,10 @@ public void Attach(KeyCounterDisplay keyCounter)
166
167
keyCounter.SetReceptor(receptor);
168
keyCounter.AddRange(KeyBindingContainer.DefaultKeyBindings
169
- .Select(b => b.GetAction<T>())
170
- .Distinct()
171
- .OrderBy(action => action)
172
- .Select(action => new KeyCounterActionTrigger<T>(action)));
+ .Select(b => b.GetAction<T>())
+ .Distinct()
+ .OrderBy(action => action)
+ .Select(action => new KeyCounterActionTrigger<T>(action)));
173
}
174
175
private partial class ActionReceptor : KeyCounterDisplay.Receptor, IKeyBindingHandler<T>
0 commit comments