mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Update References to FlowStrategies
References now use the Create*-names instead of the outdated Get*-names to create instances of FlowStrategies.
This commit is contained in:
@ -60,13 +60,13 @@ namespace osu.Desktop.Overlays
|
||||
new FlowContainer
|
||||
{
|
||||
AutoSizeAxes = Axes.Both,
|
||||
FlowStrategy = FlowStrategies.GetVerticalFlow(),
|
||||
FlowStrategy = FlowStrategies.CreateVerticalFlow(),
|
||||
Children = new Drawable[]
|
||||
{
|
||||
new FlowContainer
|
||||
{
|
||||
AutoSizeAxes = Axes.Both,
|
||||
FlowStrategy = FlowStrategies.GetHorizontalFlow(new Vector2(5)),
|
||||
FlowStrategy = FlowStrategies.CreateHorizontalFlow(new Vector2(5)),
|
||||
Anchor = Anchor.TopCentre,
|
||||
Origin = Anchor.TopCentre,
|
||||
Children = new Drawable[]
|
||||
|
Reference in New Issue
Block a user