1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-21 23:07:45 +08:00

Fix skin dropdown not updating correctly when skin is changed externally

This commit is contained in:
Dean Herbert 2022-09-13 14:01:40 +09:00
parent d368f37c3a
commit 0fcd9e02f6

View File

@ -53,6 +53,8 @@ namespace osu.Game.Database
public bool Equals(Live<T>? other) => ID == other?.ID;
public override int GetHashCode() => HashCode.Combine(ID);
public override string ToString() => PerformRead(i => i.ToString());
}
}