From 1981e49a40723f16476fae208a28c693fca03c01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Dach?= Date: Sun, 30 Jul 2023 14:28:16 +0200 Subject: [PATCH] Fix nullability inspection --- osu.Game/Overlays/NowPlayingOverlay.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/NowPlayingOverlay.cs b/osu.Game/Overlays/NowPlayingOverlay.cs index 4132db42bc..6abde713b6 100644 --- a/osu.Game/Overlays/NowPlayingOverlay.cs +++ b/osu.Game/Overlays/NowPlayingOverlay.cs @@ -67,7 +67,7 @@ namespace osu.Game.Overlays [Resolved] private OsuColour colours { get; set; } = null!; - private Bindable allowTrackControl; + private Bindable allowTrackControl = null!; public NowPlayingOverlay() {