1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:47:26 +08:00

Default to showing all rooms

This commit is contained in:
Dean Herbert 2020-07-10 19:36:54 +09:00
parent 24132c7cf9
commit cf3251a950

View File

@ -16,7 +16,7 @@ namespace osu.Game.Screens.Multi.Lounge.Components
{
protected override Color4 BackgroundColour => Color4.Black.Opacity(0.5f);
protected override RoomStatusFilter DefaultTab => RoomStatusFilter.Open;
protected override RoomCategoryFilter DefaultCategory => RoomCategoryFilter.Normal;
protected override RoomCategoryFilter DefaultCategory => RoomCategoryFilter.Any;
protected override float ContentHorizontalPadding => base.ContentHorizontalPadding + OsuScreen.HORIZONTAL_OVERFLOW_PADDING;
@ -81,6 +81,7 @@ namespace osu.Game.Screens.Multi.Lounge.Components
public enum RoomCategoryFilter
{
Any,
Normal,
Spotlight
}