mirror of https://github.com/ppy/osu
Move IsLoaded check to more correct place
This commit is contained in:
parent
a2e3ab6463
commit
40a33b3382
|
@ -40,7 +40,8 @@ public IReadOnlyList<BreakPeriod> Breaks
|
|||
isBreakTime.Value = false;
|
||||
CurrentBreakIndex = 0;
|
||||
|
||||
initializeBreaks();
|
||||
if (IsLoaded)
|
||||
initializeBreaks();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -162,8 +163,6 @@ private void updateBreakTimeBindable()
|
|||
|
||||
private void initializeBreaks()
|
||||
{
|
||||
if (!IsLoaded) return; // we need a clock.
|
||||
|
||||
FinishTransforms(true);
|
||||
Scheduler.CancelDelayedTasks();
|
||||
|
||||
|
|
Loading…
Reference in New Issue