1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 01:03:15 +08:00

Update inspectcode version and fix new issues

This commit is contained in:
Dean Herbert
2020-02-15 11:54:29 +09:00
Unverified
parent 4379466b1e
commit bb541f5ae4
4 changed files with 18 additions and 18 deletions
+7 -7
View File
@@ -301,15 +301,15 @@ namespace osu.Game.Screens.Menu
case ButtonSystemState.Initial:
logoDelayedAction?.Cancel();
logoDelayedAction = Scheduler.AddDelayed(() =>
{
logoTrackingContainer.StopTracking();
{
logoTrackingContainer.StopTracking();
game?.Toolbar.Hide();
game?.Toolbar.Hide();
logo.ClearTransforms(targetMember: nameof(Position));
logo.MoveTo(new Vector2(0.5f), 800, Easing.OutExpo);
logo.ScaleTo(1, 800, Easing.OutExpo);
}, buttonArea.Alpha * 150);
logo.ClearTransforms(targetMember: nameof(Position));
logo.MoveTo(new Vector2(0.5f), 800, Easing.OutExpo);
logo.ScaleTo(1, 800, Easing.OutExpo);
}, buttonArea.Alpha * 150);
break;
case ButtonSystemState.TopLevel: