1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:07:25 +08:00

Increase highlight delay to 1500ms

This commit is contained in:
Salman Ahmed 2022-03-10 02:50:07 +03:00
parent 80c0df6af5
commit cf9671cafb

View File

@ -220,7 +220,7 @@ namespace osu.Game.Overlays.Chat
/// <remarks>
/// Scheduling is required to ensure the animation doesn't play until the chat line is in view and not scrolled away.
/// </remarks>
public void ScheduleHighlight() => Schedule(() => lineHighlightBackground.FadeTo(0.5f).FadeOut(1000, Easing.InQuint));
public void ScheduleHighlight() => Schedule(() => lineHighlightBackground.FadeTo(0.5f).FadeOut(1500, Easing.InQuint));
private void updateMessageContent()
{