mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 16:43:52 +09:00
Remove incorrectly added null coalesce
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user