diff --git a/osu.Game/Screens/Select/BeatmapInfoWedge.cs b/osu.Game/Screens/Select/BeatmapInfoWedge.cs index e4aa8f27b9..81cd55d429 100644 --- a/osu.Game/Screens/Select/BeatmapInfoWedge.cs +++ b/osu.Game/Screens/Select/BeatmapInfoWedge.cs @@ -61,6 +61,7 @@ namespace osu.Game.Screens.Select (beatmapInfoContainer = new BufferedContainer { Depth = newDepth, + PixelSnapping = true, CacheDrawnFrameBuffer = true, Shear = -Shear, RelativeSizeAxes = Axes.Both, diff --git a/osu.Game/Screens/Select/PlaySongSelect.cs b/osu.Game/Screens/Select/PlaySongSelect.cs index fb3f6acbdf..78423c06f1 100644 --- a/osu.Game/Screens/Select/PlaySongSelect.cs +++ b/osu.Game/Screens/Select/PlaySongSelect.cs @@ -213,11 +213,8 @@ namespace osu.Game.Screens.Select Content.FadeInFromZero(250); - beatmapInfoWedge.MoveTo(wedged_container_start_position + new Vector2(-100, 50)); - beatmapInfoWedge.RotateTo(10); - - beatmapInfoWedge.MoveTo(wedged_container_start_position, 800, EasingTypes.OutQuint); - beatmapInfoWedge.RotateTo(0, 800, EasingTypes.OutQuint); + beatmapInfoWedge.MoveToX(wedged_container_start_position.X - 50); + beatmapInfoWedge.MoveToX(wedged_container_start_position.X, 800, EasingTypes.OutQuint); } protected override void OnResuming(GameMode last)