Enable NRT in `AccountCreationOverlay`

This commit is contained in:
Bartłomiej Dach 2024-02-02 07:05:27 +01:00
parent 93d34e4115
commit 45f60b035e
No known key found for this signature in database
1 changed files with 3 additions and 5 deletions

View File

@ -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)