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

Add similar special case for insert after removal

This commit is contained in:
Dean Herbert 2024-07-09 20:44:55 +09:00
parent 0e2e44a2f5
commit 123d3d2ff8
No known key found for this signature in database

View File

@ -302,8 +302,10 @@ namespace osu.Game.Screens.Select
{
Guid id = sender[i].ID;
realmBeatmapSets.Insert(i, id);
setsRequiringRemoval.Remove(id);
setsRequiringUpdate.Add(id);
realmBeatmapSets.Insert(i, id);
}
foreach (int i in changes.NewModifiedIndices)