Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions osu.Game/Screens/Select/Carousel/UpdateBeatmapSetButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,13 @@ private void attachExistingDownload()

protected override bool OnHover(HoverEvent e)
{
icon.Spin(400, RotationDirection.Clockwise);
icon.Spin(400, RotationDirection.Clockwise, icon.Rotation);
return base.OnHover(e);
}

protected override void OnHoverLost(HoverLostEvent e)
{
icon.Spin(4000, RotationDirection.Clockwise);
icon.Spin(4000, RotationDirection.Clockwise, icon.Rotation);
base.OnHoverLost(e);
}
}
Expand Down
4 changes: 2 additions & 2 deletions osu.Game/Screens/SelectV2/PanelUpdateBeatmapButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ private void beatmapChanged()

protected override bool OnHover(HoverEvent e)
{
icon.Spin(400, RotationDirection.Clockwise);
icon.Spin(400, RotationDirection.Clockwise, icon.Rotation);
return base.OnHover(e);
}

protected override void OnHoverLost(HoverLostEvent e)
{
icon.Spin(4000, RotationDirection.Clockwise);
icon.Spin(4000, RotationDirection.Clockwise, icon.Rotation);
base.OnHoverLost(e);
}

Expand Down
Loading