1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 04:12:57 +08:00

Re-enable masking by default

This commit is contained in:
Dean Herbert 2025-01-24 19:28:39 +09:00
parent f65be009a3
commit 3cde11ab77
No known key found for this signature in database
2 changed files with 7 additions and 1 deletions

View File

@ -32,6 +32,13 @@ namespace osu.Game.Tests.Visual.SongSelect
RemoveAllBeatmaps(); RemoveAllBeatmaps();
} }
[Test]
public void TestOffScreenLoading()
{
AddStep("disable masking", () => Scroll.Masking = false);
AddStep("enable masking", () => Scroll.Masking = true);
}
[Test] [Test]
public void TestAddRemoveOneByOne() public void TestAddRemoveOneByOne()
{ {

View File

@ -205,7 +205,6 @@ namespace osu.Game.Screens.SelectV2
InternalChild = scroll = new CarouselScrollContainer InternalChild = scroll = new CarouselScrollContainer
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Masking = false,
}; };
Items.BindCollectionChanged((_, _) => FilterAsync()); Items.BindCollectionChanged((_, _) => FilterAsync());