mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:07:52 +08:00
Fix nullability warning
This commit is contained in:
parent
f9742c3c34
commit
f0cec04619
@ -106,8 +106,8 @@ namespace osu.Game.Tournament.Screens.Setup
|
|||||||
|
|
||||||
loginOverlay.State.Value = Visibility.Visible;
|
loginOverlay.State.Value = Visibility.Visible;
|
||||||
},
|
},
|
||||||
Value = api?.LocalUser.Value.Username,
|
Value = api.LocalUser.Value.Username,
|
||||||
Failing = api?.IsLoggedIn != true,
|
Failing = api.IsLoggedIn != true,
|
||||||
Description = "In order to access the API and display metadata, signing in is required."
|
Description = "In order to access the API and display metadata, signing in is required."
|
||||||
},
|
},
|
||||||
new LabelledDropdown<RulesetInfo>
|
new LabelledDropdown<RulesetInfo>
|
||||||
|
Loading…
Reference in New Issue
Block a user