mirror of
https://github.com/ppy/osu.git
synced 2026-05-25 04:29:52 +08:00
Fix crash on shift+right-click deleting objects
This commit is contained in:
@@ -338,7 +338,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
/// <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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user