Skip to content

Commit

Permalink
Reduce length of fade-out when hiding beatmap panels
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Jun 26, 2024
1 parent 5d45091 commit e84daed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game/Screens/Select/Carousel/DrawableCarouselItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ protected virtual void ApplyState()
}

if (!Item.Visible)
this.FadeOut(300, Easing.OutQuint);
this.FadeOut(100, Easing.OutQuint);
else
this.FadeIn(250);
this.FadeIn(400, Easing.OutQuint);
}

protected virtual void Selected()
Expand Down

0 comments on commit e84daed

Please sign in to comment.