Persist cover visibility to user settings

Follows web precedent, wherein the setting is saved to local storage.
This commit is contained in:
Bartłomiej Dach
2023-01-24 23:30:07 +01:00
parent 33e91cf512
commit f2df36e6a5
4 changed files with 40 additions and 11 deletions

View File

@ -58,6 +58,8 @@ namespace osu.Game.Configuration
SetDefault(OsuSetting.BeatmapListingCardSize, BeatmapCardSize.Normal);
SetDefault(OsuSetting.ProfileCoverExpanded, true);
SetDefault(OsuSetting.ToolbarClockDisplayMode, ToolbarClockDisplayMode.Full);
// Online settings
@ -375,5 +377,6 @@ namespace osu.Game.Configuration
LastProcessedMetadataId,
SafeAreaConsiderations,
ComboColourNormalisationAmount,
ProfileCoverExpanded,
}
}