mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 16:03:01 +08:00
Revert "Store default ruleset value for ability to revert"
This reverts commit cb7c2f713b
.
This commit is contained in:
parent
79aea1fb78
commit
eeeaefbd7d
@ -6,6 +6,7 @@ using osu.Framework.Graphics.UserInterface;
|
|||||||
using osu.Game.Beatmaps;
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Rulesets;
|
using osu.Game.Rulesets;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using osu.Framework.Allocation;
|
||||||
|
|
||||||
namespace osu.Game.Overlays.BeatmapSet
|
namespace osu.Game.Overlays.BeatmapSet
|
||||||
{
|
{
|
||||||
|
@ -26,7 +26,7 @@ namespace osu.Game.Overlays
|
|||||||
var preferredRuleset = store.GetRuleset(api.LocalUser.Value.PlayMode);
|
var preferredRuleset = store.GetRuleset(api.LocalUser.Value.PlayMode);
|
||||||
|
|
||||||
if (preferredRuleset != null)
|
if (preferredRuleset != null)
|
||||||
Current.Value = Current.Default = preferredRuleset;
|
Current.Value = preferredRuleset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ namespace osu.Game.Rulesets
|
|||||||
// That can become an issue with overlays that require access to the initial ruleset value
|
// That can become an issue with overlays that require access to the initial ruleset value
|
||||||
// before the ruleset selectors reached a LoadComplete state.
|
// before the ruleset selectors reached a LoadComplete state.
|
||||||
// (e.g. displaying RankingsOverlay for the first time).
|
// (e.g. displaying RankingsOverlay for the first time).
|
||||||
Current.Value = Current.Default = Items.First();
|
Current.Value = Items.First();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user