Fix shrinking bar lingering on the screen for too long

This commit is contained in:
EVAST9919 2017-10-05 05:23:18 +03:00
parent cc99678a96
commit cb0dbc6d9e

View File

@ -110,7 +110,7 @@ namespace osu.Game.Screens.Play.BreaksOverlay
remainingTimeBox
.ResizeWidthTo(remaining_time_container_max_size, fade_duration, Easing.OutQuint)
.Then()
.ResizeWidthTo(0, b.Duration - fade_duration);
.ResizeWidthTo(0, b.Duration - fade_duration * 2);
remainingTimeCounter.StartCounting(b.EndTime);