mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Fix multiple difficulties being expanded at once
This commit is contained in:
@ -172,7 +172,7 @@ namespace osu.Game.Screens.Select.Carousel
|
||||
{
|
||||
base.Selected();
|
||||
|
||||
BorderContainer.MoveToX(Item.State.Value == CarouselItemState.Selected ? -50 : 0, 500, Easing.OutExpo);
|
||||
BorderContainer.MoveToX(-50, 500, Easing.OutExpo);
|
||||
|
||||
background.Colour = ColourInfo.GradientVertical(
|
||||
new Color4(20, 43, 51, 255),
|
||||
@ -185,6 +185,8 @@ namespace osu.Game.Screens.Select.Carousel
|
||||
{
|
||||
base.Deselected();
|
||||
|
||||
BorderContainer.MoveToX(0, 500, Easing.OutExpo);
|
||||
|
||||
background.Colour = new Color4(20, 43, 51, 255);
|
||||
triangles.Colour = OsuColour.Gray(0.5f);
|
||||
}
|
||||
|
Reference in New Issue
Block a user