1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-17 22:22:54 +08:00

Fix collection popover

This commit is contained in:
Layendan 2024-07-21 17:51:30 -07:00 committed by Dean Herbert
parent e4cccb5e31
commit 6bb562db14
No known key found for this signature in database

View File

@ -1,8 +1,6 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable disable
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
@ -23,7 +21,7 @@ namespace osu.Game.Screens.Ranking
private RealmAccess realm { get; set; } = null!;
[Resolved]
private ManageCollectionsDialog manageCollectionsDialog { get; set; }
private ManageCollectionsDialog? manageCollectionsDialog { get; set; }
public CollectionPopover(BeatmapInfo beatmapInfo)
: base(false)