1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 05:03:38 +08:00

Fix shrinking bar lingering on the screen for too long

This commit is contained in:
EVAST9919
2017-10-05 05:23:18 +03:00
Unverified
parent cc99678a96
commit cb0dbc6d9e
@@ -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);