1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-10 01:12:56 +08:00

Remove unnecessary null check

This commit is contained in:
Dean Herbert 2024-11-28 15:42:37 +09:00
parent 8b68859d9d
commit 70eee8882a
No known key found for this signature in database

View File

@ -77,7 +77,7 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
private void hideCloseButton() private void hideCloseButton()
{ {
closeButton?.ResizeWidthTo(0, 100, Easing.OutQuint) closeButton.ResizeWidthTo(0, 100, Easing.OutQuint)
.Then().FadeOut().Expire(); .Then().FadeOut().Expire();
} }