1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 18:32:56 +08:00

Fix remaining test failure

This commit is contained in:
Dean Herbert 2020-05-14 21:10:04 +09:00
parent 11b780c97f
commit 42f446faa9

View File

@ -14,7 +14,7 @@ namespace osu.Game.Overlays.Settings.Sections.General
{
protected override string Header => "Updates";
[BackgroundDependencyLoader]
[BackgroundDependencyLoader(true)]
private void load(Storage storage, OsuConfigManager config, OsuGame game)
{
Add(new SettingsEnumDropdown<ReleaseStream>
@ -34,7 +34,7 @@ namespace osu.Game.Overlays.Settings.Sections.General
Add(new SettingsButton
{
Text = "Change folder location...",
Action = () => game.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()))
Action = () => game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()))
});
}
}