1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-21 06:02:56 +08:00

Move information text underneath the selection box

This commit is contained in:
Dean Herbert 2020-09-30 13:07:24 +09:00
parent 99a3801267
commit f2c26c0927

View File

@ -67,7 +67,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
{ {
Children = new Drawable[] Children = new Drawable[]
{ {
CreateSelectionBox(), // todo: should maybe be inside the SelectionBox?
new Container new Container
{ {
Name = "info text", Name = "info text",
@ -86,7 +86,8 @@ namespace osu.Game.Screens.Edit.Compose.Components
Font = OsuFont.Default.With(size: 11) Font = OsuFont.Default.With(size: 11)
} }
} }
} },
CreateSelectionBox(),
} }
}; };
} }