mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
Remove unnecessary null checks
This commit is contained in:
parent
4c7cca101e
commit
9d4ba5d64a
@ -501,7 +501,7 @@ namespace osu.Game.Overlays.Mods
|
||||
|
||||
base.PopIn();
|
||||
|
||||
aboveColumnsContent?
|
||||
aboveColumnsContent
|
||||
.FadeIn(fade_in_duration, Easing.OutQuint)
|
||||
.MoveToY(0, fade_in_duration, Easing.OutQuint);
|
||||
|
||||
@ -559,7 +559,7 @@ namespace osu.Game.Overlays.Mods
|
||||
|
||||
base.PopOut();
|
||||
|
||||
aboveColumnsContent?
|
||||
aboveColumnsContent
|
||||
.FadeOut(fade_out_duration / 2, Easing.OutQuint)
|
||||
.MoveToY(-distance, fade_out_duration / 2, Easing.OutQuint);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user