1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:52:54 +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[]
{
CreateSelectionBox(),
// todo: should maybe be inside the SelectionBox?
new Container
{
Name = "info text",
@ -86,7 +86,8 @@ namespace osu.Game.Screens.Edit.Compose.Components
Font = OsuFont.Default.With(size: 11)
}
}
}
},
CreateSelectionBox(),
}
};
}