Skip to content

Commit e5d57a6

Browse files
committed
Fix incorrect indent
1 parent 432f698 commit e5d57a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

osu.Game/Rulesets/UI/RulesetInputManager.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,10 @@ public void Attach(KeyCounterDisplay keyCounter)
166166

167167
keyCounter.SetReceptor(receptor);
168168
keyCounter.AddRange(KeyBindingContainer.DefaultKeyBindings
169-
.Select(b => b.GetAction<T>())
170-
.Distinct()
171-
.OrderBy(action => action)
172-
.Select(action => new KeyCounterActionTrigger<T>(action)));
169+
.Select(b => b.GetAction<T>())
170+
.Distinct()
171+
.OrderBy(action => action)
172+
.Select(action => new KeyCounterActionTrigger<T>(action)));
173173
}
174174

175175
private partial class ActionReceptor : KeyCounterDisplay.Receptor, IKeyBindingHandler<T>

0 commit comments

Comments
 (0)