1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 03:25:11 +08:00

Revert "Fix WaveOverlayContainer always being present"

This reverts commit a6fc128094.
This commit is contained in:
Dean Herbert 2018-12-14 20:50:27 +09:00
parent 4a408b7750
commit 0b5f3c00bf

View File

@ -25,20 +25,13 @@ namespace osu.Game.Overlays
protected override void PopIn()
{
base.PopIn();
Waves.Show();
this.FadeIn();
}
protected override void PopOut()
{
base.PopOut();
Waves.Hide();
// this is required or we will remain present even though our waves are hidden.
this.Delay(WaveContainer.DISAPPEAR_DURATION).FadeOut();
}
}
}