mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 13:32:54 +08:00
Rename SelectSortingMode & SelectGroupingMode -> SongSelectSortingMode & SongSelectGroupingMode
This commit is contained in:
parent
ce5ee095b9
commit
b204e4419a
@ -26,8 +26,8 @@ namespace osu.Game.Configuration
|
||||
Set(OsuSetting.DisplayStarsMinimum, 0.0, 0, 10, 0.1);
|
||||
Set(OsuSetting.DisplayStarsMaximum, 10.0, 0, 10, 0.1);
|
||||
|
||||
Set(OsuSetting.SelectGroupingMode, GroupMode.All);
|
||||
Set(OsuSetting.SelectSortingMode, SortMode.Title);
|
||||
Set(OsuSetting.SongSelectGroupingMode, GroupMode.All);
|
||||
Set(OsuSetting.SongSelectSortingMode, SortMode.Title);
|
||||
|
||||
Set(OsuSetting.RandomSelectAlgorithm, RandomSelectAlgorithm.RandomPermutation);
|
||||
|
||||
@ -154,8 +154,8 @@ namespace osu.Game.Configuration
|
||||
SaveUsername,
|
||||
DisplayStarsMinimum,
|
||||
DisplayStarsMaximum,
|
||||
SelectGroupingMode,
|
||||
SelectSortingMode,
|
||||
SongSelectGroupingMode,
|
||||
SongSelectSortingMode,
|
||||
RandomSelectAlgorithm,
|
||||
ShowFpsDisplay,
|
||||
ChatDisplayHeight,
|
||||
|
@ -156,8 +156,8 @@ namespace osu.Game.Screens.Select
|
||||
ruleset.BindTo(parentRuleset);
|
||||
ruleset.BindValueChanged(_ => updateCriteria());
|
||||
|
||||
SortMode = config.GetBindable<SortMode>(OsuSetting.SelectSortingMode);
|
||||
GroupMode = config.GetBindable<GroupMode>(OsuSetting.SelectGroupingMode);
|
||||
SortMode = config.GetBindable<SortMode>(OsuSetting.SongSelectSortingMode);
|
||||
GroupMode = config.GetBindable<GroupMode>(OsuSetting.SongSelectGroupingMode);
|
||||
|
||||
sortTabs.Current.BindTo(SortMode);
|
||||
groupTabs.Current.BindTo(GroupMode);
|
||||
|
Loading…
Reference in New Issue
Block a user