Make AbortConfirm() virtual and override with filter logic

This commit is contained in:
Joseph Madamba
2023-02-11 12:54:16 -08:00
parent 94d6ab1ec7
commit 8d9245c1d4
2 changed files with 7 additions and 3 deletions

View File

@ -100,7 +100,7 @@ namespace osu.Game.Graphics.Containers
/// <summary>
/// Abort any ongoing confirmation. Should be called when the container's interaction is no longer valid (ie. the user releases a key).
/// </summary>
protected void AbortConfirm()
protected virtual void AbortConfirm()
{
if (!confirming || (!AllowMultipleFires && Fired)) return;