mirror of https://github.com/ppy/osu
Enable NRT in `AccountCreationOverlay`
This commit is contained in:
parent
93d34e4115
commit
45f60b035e
|
@ -1,8 +1,6 @@
|
|||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Bindables;
|
||||
|
@ -25,7 +23,9 @@ public partial class AccountCreationOverlay : OsuFocusedOverlayContainer
|
|||
{
|
||||
private const float transition_time = 400;
|
||||
|
||||
private ScreenWelcome welcomeScreen;
|
||||
private ScreenWelcome welcomeScreen = null!;
|
||||
|
||||
private ScheduledDelegate? scheduledHide;
|
||||
|
||||
public AccountCreationOverlay()
|
||||
{
|
||||
|
@ -108,8 +108,6 @@ protected override void PopOut()
|
|||
this.FadeOut(100);
|
||||
}
|
||||
|
||||
private ScheduledDelegate scheduledHide;
|
||||
|
||||
private void apiStateChanged(ValueChangedEvent<APIState> state)
|
||||
{
|
||||
switch (state.NewValue)
|
||||
|
|
Loading…
Reference in New Issue