Don't bother checking for null `editorBeatmap`

This commit is contained in:
Dean Herbert 2022-10-28 14:35:55 +09:00
parent 10c658e440
commit 300ffbb500
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public override bool HandleQuickDeletion()
return true;
}
private bool hasSingleObjectSelected => editorBeatmap == null || selectedObjects.Count == 1;
private bool hasSingleObjectSelected => selectedObjects.Count == 1;
protected override void Update()
{