1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 06:35:05 +08:00

Fix user top score not having a context menu

This commit is contained in:
Joehu 2020-07-11 16:22:01 -07:00
parent 9b4bed2ab2
commit 0d26ad9ddb

View File

@ -170,7 +170,10 @@ namespace osu.Game.Online.Leaderboards
{
InternalChildren = new Drawable[]
{
new GridContainer
new OsuContextMenuContainer
{
RelativeSizeAxes = Axes.Both,
Child = new GridContainer
{
RelativeSizeAxes = Axes.Both,
RowDimensions = new[]
@ -182,15 +185,11 @@ namespace osu.Game.Online.Leaderboards
{
new Drawable[]
{
new OsuContextMenuContainer
{
RelativeSizeAxes = Axes.Both,
Child = scrollContainer = new OsuScrollContainer
scrollContainer = new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both,
ScrollbarVisible = false,
}
}
},
new Drawable[]
{
@ -202,6 +201,7 @@ namespace osu.Game.Online.Leaderboards
}
},
},
},
loading = new LoadingSpinner(),
placeholderContainer = new Container
{