Rename "SeasonalBackgrounds" to "SeasonalBackgroundMode"

This commit is contained in:
Max Hübner
2020-10-30 15:54:10 +01:00
parent 1db8dfd03e
commit 4e3fb615d2
4 changed files with 13 additions and 13 deletions

View File

@ -40,11 +40,11 @@ namespace osu.Game.Overlays.Settings.Sections.Audio
Current = config.GetBindable<BackgroundSource>(OsuSetting.MenuBackgroundSource),
Items = Enum.GetValues(typeof(BackgroundSource)).Cast<BackgroundSource>()
},
new SettingsDropdown<SeasonalBackgrounds>
new SettingsDropdown<SeasonalBackgroundMode>
{
LabelText = "Seasonal backgrounds",
Current = config.GetBindable<SeasonalBackgrounds>(OsuSetting.SeasonalBackgrounds),
Items = Enum.GetValues(typeof(SeasonalBackgrounds)).Cast<SeasonalBackgrounds>()
Current = config.GetBindable<SeasonalBackgroundMode>(OsuSetting.SeasonalBackgroundMode),
Items = Enum.GetValues(typeof(SeasonalBackgroundMode)).Cast<SeasonalBackgroundMode>()
}
};
}