mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 09:22:54 +08:00
Fix weird margins on loading display in lounge
This commit is contained in:
parent
80d06a7e37
commit
89eded457c
@ -63,6 +63,8 @@ namespace osu.Game.Screens.OnlinePlay.Lounge
|
||||
{
|
||||
OsuScrollContainer scrollContainer;
|
||||
|
||||
Container filterContainer;
|
||||
|
||||
InternalChildren = new Drawable[]
|
||||
{
|
||||
new Box
|
||||
@ -93,7 +95,7 @@ namespace osu.Game.Screens.OnlinePlay.Lounge
|
||||
{
|
||||
new Drawable[]
|
||||
{
|
||||
new Container
|
||||
filterContainer = new Container
|
||||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
Height = 70,
|
||||
@ -123,13 +125,14 @@ namespace osu.Game.Screens.OnlinePlay.Lounge
|
||||
ScrollbarOverlapsContent = false,
|
||||
Child = roomsContainer = new RoomsContainer()
|
||||
},
|
||||
loadingLayer = new LoadingLayer(true),
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
},
|
||||
loadingLayer = new LoadingLayer(true),
|
||||
filterContainer.CreateProxy()
|
||||
};
|
||||
|
||||
// scroll selected room into view on selection.
|
||||
|
Loading…
Reference in New Issue
Block a user