// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics; using osu.Game.Graphics.UserInterface; namespace osu.Game.Overlays.Settings { public class SettingsEnumDropdown : SettingsDropdown { protected override Drawable CreateControl() => new OsuEnumDropdown { Margin = new MarginPadding { Top = 5 }, RelativeSizeAxes = Axes.X, }; } }