mirror of
https://github.com/ppy/osu
synced 2024-12-14 10:57:41 +00:00
Remove unused search container in lounge
This commit is contained in:
parent
7720f928c8
commit
69062a3ed1
@ -34,7 +34,7 @@ namespace osu.Game.Screens.Multi.Lounge
|
||||
|
||||
public LoungeSubScreen()
|
||||
{
|
||||
SearchContainer searchContainer;
|
||||
RoomsContainer roomsContainer;
|
||||
|
||||
InternalChildren = new Drawable[]
|
||||
{
|
||||
@ -55,14 +55,9 @@ namespace osu.Game.Screens.Multi.Lounge
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
ScrollbarOverlapsContent = false,
|
||||
Padding = new MarginPadding(10),
|
||||
Child = searchContainer = new SearchContainer
|
||||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
AutoSizeAxes = Axes.Y,
|
||||
Child = new RoomsContainer { JoinRequested = joinRequested }
|
||||
},
|
||||
Child = roomsContainer = new RoomsContainer { JoinRequested = joinRequested }
|
||||
},
|
||||
loadingLayer = new LoadingLayer(searchContainer),
|
||||
loadingLayer = new LoadingLayer(roomsContainer),
|
||||
}
|
||||
},
|
||||
new RoomInspector
|
||||
|
Loading…
Reference in New Issue
Block a user