Fix editor's clock not being processed unless composer is loaded

This commit is contained in:
Dean Herbert
2019-10-18 18:21:53 +09:00
parent b391b8542d
commit 07286c0cfc
2 changed files with 8 additions and 1 deletions

View File

@ -173,6 +173,12 @@ namespace osu.Game.Screens.Edit
bottomBackground.Colour = colours.Gray2;
}
protected override void Update()
{
base.Update();
clock.ProcessFrame();
}
protected override bool OnKeyDown(KeyDownEvent e)
{
switch (e.Key)