// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Graphics.UserInterface; using osu.Game.Overlays.Settings; namespace osu.Game.Tournament.Screens.Ladder.Components { public class LadderSettingsDropdown : SettingsDropdown { protected override OsuDropdown CreateDropdown() => new DropdownControl(); private new class DropdownControl : SettingsDropdown.DropdownControl { protected override DropdownMenu CreateMenu() => new Menu(); private new class Menu : OsuDropdownMenu { public Menu() { MaxHeight = 200; } } } } }