Fix redundant bindable initialisation in `SongSelect`

This commit is contained in:
Dean Herbert 2023-10-06 16:51:56 +09:00
parent 1d7b8ea21a
commit 936a21a661
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ public abstract partial class SongSelect : ScreenWithBeatmapBackground, IKeyBind
[Resolved] [Resolved]
internal IOverlayManager? OverlayManager { get; private set; } internal IOverlayManager? OverlayManager { get; private set; }
private Bindable<bool> configBackgroundBlur { get; set; } = new BindableBool(); private Bindable<bool> configBackgroundBlur = null!;
[BackgroundDependencyLoader(true)] [BackgroundDependencyLoader(true)]
private void load(AudioManager audio, OsuColour colours, ManageCollectionsDialog? manageCollectionsDialog, DifficultyRecommender? recommender, OsuConfigManager config) private void load(AudioManager audio, OsuColour colours, ManageCollectionsDialog? manageCollectionsDialog, DifficultyRecommender? recommender, OsuConfigManager config)