mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Fix UserProfile weirdness
This commit is contained in:
@ -26,8 +26,11 @@ namespace osu.Game.Graphics.Containers
|
||||
{
|
||||
if (value == expandableHeader) return;
|
||||
|
||||
expandableHeader?.Expire();
|
||||
if (expandableHeader != null)
|
||||
RemoveInternal(expandableHeader);
|
||||
|
||||
expandableHeader = value;
|
||||
|
||||
if (value == null) return;
|
||||
|
||||
AddInternal(expandableHeader);
|
||||
|
Reference in New Issue
Block a user