Remove delay on entering player

This commit is contained in:
Dean Herbert 2019-04-22 17:06:40 +09:00
parent 034643b835
commit b3c496d72c
1 changed files with 2 additions and 5 deletions

View File

@ -110,11 +110,8 @@ public void Restart()
adjustableClock.ChangeSource(sourceClock);
updateRate();
this.Delay(750).Schedule(() =>
{
if (!IsPaused.Value)
Start();
});
if (!IsPaused.Value)
Start();
});
});
}