1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 17:47:19 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
771 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 18:19:50 +09:00
2019-12-07 19:56:56 +08:00
using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
2018-04-13 18:19:50 +09:00
2020-12-07 22:07:11 +09:00
namespace osu.Game.Graphics.UserInterface
{
public partial class SlimEnumDropdown<T> : OsuEnumDropdown<T>
2019-12-07 19:56:56 +08:00
where T : struct, Enum
{
protected override DropdownHeader CreateHeader() => new SlimDropdownHeader();
2018-04-13 18:19:50 +09:00
private partial class SlimDropdownHeader : OsuDropdownHeader
{
public SlimDropdownHeader()
{
Height = 25;
Foreground.Padding = new MarginPadding { Top = 4, Bottom = 4, Left = 8, Right = 4 };
}
}
}
}