mirror of
https://github.com/ppy/osu.git
synced 2025-02-22 03:02:55 +08:00
Remove incorrectly added null coalesce
This commit is contained in:
parent
1661c0c681
commit
1cc9e504cf
@ -55,7 +55,7 @@ namespace osu.Game.Overlays.Wiki
|
||||
|
||||
private void onCurrentChange(ValueChangedEvent<LocalisableString?> e)
|
||||
{
|
||||
if (e?.NewValue == TabControl.Items.LastOrDefault())
|
||||
if (e.NewValue == TabControl.Items.LastOrDefault())
|
||||
return;
|
||||
|
||||
if (e.NewValue == IndexPageString)
|
||||
|
Loading…
Reference in New Issue
Block a user