Fix incorrect indent size

This commit is contained in:
Bartłomiej Dach 2023-06-26 22:40:25 +02:00
parent 7200855d46
commit 40ceb4dfac
No known key found for this signature in database

View File

@ -165,10 +165,10 @@ namespace osu.Game.Rulesets.UI
KeyBindingContainer.Add(inputCountController);
inputCountController.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)));
}
#endregion