1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 19:27:26 +08:00

Add missing spaces

This commit is contained in:
Dean Herbert 2017-06-07 20:44:54 +09:00
parent 8d434e88ee
commit 59bed2b16e
2 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.SearchableList
{
public abstract class SearchableListFilterControl<T,U> : Container
public abstract class SearchableListFilterControl<T, U> : Container
{
private const float padding = 10;

View File

@ -15,19 +15,19 @@ namespace osu.Game.Overlays.SearchableList
public static readonly float WIDTH_PADDING = 80;
}
public abstract class SearchableListOverlay<T,U,S> : SearchableListOverlay
public abstract class SearchableListOverlay<T, U, S> : SearchableListOverlay
{
private readonly Container scrollContainer;
protected readonly SearchableListHeader<T> Header;
protected readonly SearchableListFilterControl<U,S> Filter;
protected readonly SearchableListFilterControl<U, S> Filter;
protected readonly FillFlowContainer ScrollFlow;
protected abstract Color4 BackgroundColour { get; }
protected abstract Color4 TrianglesColourLight { get; }
protected abstract Color4 TrianglesColourDark { get; }
protected abstract SearchableListHeader<T> CreateHeader();
protected abstract SearchableListFilterControl<U,S> CreateFilterControl();
protected abstract SearchableListFilterControl<U, S> CreateFilterControl();
protected SearchableListOverlay()
{