1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 11:22:54 +08:00

Fix song select test scenes not given a width when running tests individually

This commit is contained in:
Salman Alshamrani
2025-04-30 07:46:17 +03:00
committed by Dean Herbert
Unverified
parent d26c94cfac
commit d491b6872e
@@ -23,7 +23,6 @@ namespace osu.Game.Tests.Visual.SongSelectV2
};
private Container? resizeContainer;
private float relativeWidth;
protected virtual Anchor ComponentAnchor => Anchor.TopLeft;
protected virtual float InitialRelativeWidth => 0.5f;
@@ -40,7 +39,7 @@ namespace osu.Game.Tests.Visual.SongSelectV2
Origin = ComponentAnchor,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Width = relativeWidth,
Width = InitialRelativeWidth,
Child = Content
}
};
@@ -49,8 +48,6 @@ namespace osu.Game.Tests.Visual.SongSelectV2
{
if (resizeContainer != null)
resizeContainer.Width = v;
relativeWidth = v;
});
}