mirror of
https://github.com/osukey/osukey.git
synced 2025-07-23 19:30:06 +09:00
Use container instead of fill flow
This commit is contained in:
@ -27,13 +27,17 @@ namespace osu.Game.Tests.Visual.Gameplay
|
||||
public TestSceneBreakOverlay()
|
||||
{
|
||||
SpriteText breakTimeText;
|
||||
Child = new FillFlowContainer
|
||||
Child = new Container
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
Direction = FillDirection.Vertical,
|
||||
Children = new Drawable[]
|
||||
{
|
||||
breakTimeText = new SpriteText(),
|
||||
breakTimeText = new SpriteText
|
||||
{
|
||||
Anchor = Anchor.Centre,
|
||||
Origin = Anchor.Centre,
|
||||
Margin = new MarginPadding { Bottom = 35 },
|
||||
},
|
||||
breakOverlay = new BreakOverlay(true)
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user