1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00

Schedule deselection operations for safety

This commit is contained in:
Dean Herbert 2021-01-05 16:17:55 +09:00
parent 962c95dc01
commit 57a8cd7461

View File

@ -104,7 +104,7 @@ namespace osu.Game.Overlays.Mods
/// </summary>
/// <param name="modTypes">The types of <see cref="Mod"/>s which should be deselected.</param>
/// <param name="immediate">Set to true to bypass animations and update selections immediately.</param>
public void DeselectTypes(IEnumerable<Type> modTypes, bool immediate = false)
public void DeselectTypes(IEnumerable<Type> modTypes, bool immediate = false) => Schedule(() =>
{
int delay = 0;
@ -124,7 +124,7 @@ namespace osu.Game.Overlays.Mods
}
}
}
}
});
/// <summary>
/// Select one or more mods in this section and deselects all other ones.