1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 02:33:02 +08:00

Add "show converted" checkbox to song select for convenience

This commit is contained in:
Dean Herbert 2020-07-09 13:47:23 +09:00
parent bbbe8d6f68
commit f231b5925f

View File

@ -116,6 +116,13 @@ namespace osu.Game.Screens.Select
Spacing = new Vector2(OsuTabControl<SortMode>.HORIZONTAL_SPACING, 0),
Children = new Drawable[]
{
new OsuTabControlCheckbox
{
Text = "Show converted",
Current = config.GetBindable<bool>(OsuSetting.ShowConvertedBeatmaps),
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
},
sortTabs = new OsuTabControl<SortMode>
{
RelativeSizeAxes = Axes.X,