mirror of
https://github.com/osukey/osukey.git
synced 2025-05-05 05:37:18 +09: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)
|
private void onCurrentChange(ValueChangedEvent<LocalisableString?> e)
|
||||||
{
|
{
|
||||||
if (e?.NewValue == TabControl.Items.LastOrDefault())
|
if (e.NewValue == TabControl.Items.LastOrDefault())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (e.NewValue == IndexPageString)
|
if (e.NewValue == IndexPageString)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user