mirror of https://github.com/ppy/osu
Don't bother checking for null `editorBeatmap`
This commit is contained in:
parent
10c658e440
commit
300ffbb500
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue