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:
parent
8d434e88ee
commit
59bed2b16e
@ -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;
|
||||
|
||||
|
@ -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()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user