1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 13:33:03 +08:00

Merge pull request #14267 from peppy/fix-loading-screen-depth

Fix weird margins on loading display in lounge
This commit is contained in:
Dan Balasescu 2021-08-13 17:55:07 +09:00 committed by GitHub
commit 329ec62d62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,8 +75,9 @@ namespace osu.Game.Screens.OnlinePlay.Lounge
OsuScrollContainer scrollContainer; OsuScrollContainer scrollContainer;
InternalChildren = new Drawable[] InternalChildren = new[]
{ {
loadingLayer = new LoadingLayer(true),
new Container new Container
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
@ -151,13 +152,12 @@ namespace osu.Game.Screens.OnlinePlay.Lounge
ScrollbarOverlapsContent = false, ScrollbarOverlapsContent = false,
Child = roomsContainer = new RoomsContainer() Child = roomsContainer = new RoomsContainer()
}, },
loadingLayer = new LoadingLayer(true),
} }
}, },
} }
} }
}, },
} },
}; };
// scroll selected room into view on selection. // scroll selected room into view on selection.