1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 14:10:33 +08:00

Rename one more missed song select v2 class

This commit is contained in:
Dean Herbert
2026-02-25 02:18:18 +09:00
Unverified
parent 5b1d4ceb9d
commit ee8d99034c
6 changed files with 9 additions and 9 deletions
@@ -27,7 +27,7 @@ using osuTK.Input;
namespace osu.Game.Tests.Visual.Multiplayer
{
public partial class TestScenePlaylistsSongSelectV2 : OnlinePlayTestScene
public partial class TestScenePlaylistsSongSelect : OnlinePlayTestScene
{
private RulesetStore rulesets = null!;
private BeatmapManager manager = null!;
@@ -191,7 +191,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
rulesets.Dispose();
}
private partial class TestPlaylistsSongSelect : PlaylistsSongSelectV2
private partial class TestPlaylistsSongSelect : PlaylistsSongSelect
{
public new IBindable<bool> Freestyle => base.Freestyle;
@@ -94,7 +94,7 @@ namespace osu.Game.Tests.Visual.Navigation
AddStep("edit playlist", () => InputManager.Key(Key.Enter));
AddUntilStep("wait for song select", () => playlistScreen.CurrentSubScreen is PlaylistsSongSelectV2 songSelect && songSelect.IsLoaded && !songSelect.IsFiltering);
AddUntilStep("wait for song select", () => playlistScreen.CurrentSubScreen is PlaylistsSongSelect songSelect && songSelect.IsLoaded && !songSelect.IsFiltering);
AddUntilStep("wait for selection", () => !Game.Beatmap.IsDefault);
@@ -109,7 +109,7 @@ namespace osu.Game.Tests.Visual.Navigation
InputManager.Click(MouseButton.Left);
});
AddUntilStep("wait for song select", () => playlistScreen.CurrentSubScreen is PlaylistsSongSelectV2 songSelect && songSelect.IsLoaded && !songSelect.IsFiltering);
AddUntilStep("wait for song select", () => playlistScreen.CurrentSubScreen is PlaylistsSongSelect songSelect && songSelect.IsLoaded && !songSelect.IsFiltering);
AddStep("press home button", () =>
{
@@ -18,7 +18,7 @@ namespace osu.Game.Tests.Visual.Playlists
{
base.SetUpSteps();
AddStep("add tray", () => Child = new PlaylistsSongSelectV2.PlaylistTray(room = new Room())
AddStep("add tray", () => Child = new PlaylistsSongSelect.PlaylistTray(room = new Room())
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre
@@ -404,7 +404,7 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
EditPlaylist = () =>
{
if (this.IsCurrentScreen())
this.Push(new PlaylistsSongSelectV2(room));
this.Push(new PlaylistsSongSelect(room));
}
}
}
@@ -20,7 +20,7 @@ using Container = osu.Framework.Graphics.Containers.Container;
namespace osu.Game.Screens.OnlinePlay.Playlists
{
public partial class PlaylistsSongSelectV2
public partial class PlaylistsSongSelect
{
public partial class PlaylistTray : CompositeDrawable
{
@@ -23,7 +23,7 @@ using osu.Game.Utils;
namespace osu.Game.Screens.OnlinePlay.Playlists
{
public partial class PlaylistsSongSelectV2 : SongSelect, IOnlinePlaySubScreen
public partial class PlaylistsSongSelect : SongSelect, IOnlinePlaySubScreen
{
public string ShortTitle => "song selection";
@@ -43,7 +43,7 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
private IDisposable? modSelectOverlayRegistration;
public PlaylistsSongSelectV2(Room room)
public PlaylistsSongSelect(Room room)
{
this.room = room;