1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-25 18:57:18 +08:00

Invalidate drawable on potential presence change

This commit is contained in:
Dean Herbert 2025-02-14 19:04:26 +09:00
parent 4184dd2718
commit 26a2d0394e
No known key found for this signature in database

View File

@ -21,7 +21,11 @@ namespace osu.Game.Users.Drawables
public APITeam? Team
{
get => Model;
set => Model = value;
set
{
Model = value;
Invalidate(Invalidation.Presence);
}
}
protected override double LoadDelay => 200;