mirror of https://github.com/ppy/osu
Fix crash on shift+right-click deleting objects
This commit is contained in:
parent
aae59dc3cf
commit
4d2bc790fd
|
@ -338,7 +338,7 @@ protected virtual void OnBlueprintRemoved(HitObject hitObject)
|
|||
/// <returns>Whether a selection was performed.</returns>
|
||||
private bool beginClickSelection(MouseButtonEvent e)
|
||||
{
|
||||
foreach (SelectionBlueprint blueprint in SelectionBlueprints.AliveChildren)
|
||||
foreach (SelectionBlueprint blueprint in SelectionBlueprints.AliveChildren.ToList())
|
||||
{
|
||||
if (!blueprint.IsHovered) continue;
|
||||
|
||||
|
|
Loading…
Reference in New Issue