Set "Title" as the default grouping/sorting modes in song select (#5396)

Set "Title" as the default grouping/sorting modes in song select
This commit is contained in:
Dean Herbert 2019-07-22 18:06:23 +09:00 committed by GitHub
commit a05a6bbb77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -120,7 +120,8 @@ public FilterControl()
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Height = 24, Height = 24,
Width = 0.5f, Width = 0.5f,
AutoSort = true AutoSort = true,
Current = { Value = GroupMode.Title }
}, },
//spriteText = new OsuSpriteText //spriteText = new OsuSpriteText
//{ //{
@ -139,6 +140,7 @@ public FilterControl()
Width = 0.5f, Width = 0.5f,
Height = 24, Height = 24,
AutoSort = true, AutoSort = true,
Current = { Value = SortMode.Title }
} }
} }
}, },