Remove repeated TimeStarted check

This commit is contained in:
Andrei Zavatski 2024-02-24 16:42:44 +03:00
parent 9b526912e9
commit 4bba0eaf4b
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ protected override void Update()
{
base.Update();
if (spmContainer.Alpha == 0 && drawableSpinner.Result?.TimeStarted != null)
if (spmContainer.Alpha == 0)
fadeCounterOnTimeStart();
}

View File

@ -126,7 +126,7 @@ protected override void Update()
{
base.Update();
if (spmContainer.Alpha == 0 && drawableSpinner.Result?.TimeStarted != null)
if (spmContainer.Alpha == 0)
fadeCounterOnTimeStart();
}