This commit is contained in:
Dean Herbert
2017-03-23 08:49:29 +09:00
parent ba32d50456
commit 3dee39346f
2 changed files with 4 additions and 4 deletions

View File

@ -43,9 +43,9 @@ namespace osu.Game.Graphics.UserInterface
protected override DropdownMenuItem<T> CreateMenuItem(string text, T value) => new OsuDropdownMenuItem<T>(text, value) { AccentColour = AccentColour };
private class OsuDropdownMenuItem<U> : DropdownMenuItem<U>
private class OsuDropdownMenuItem<T1> : DropdownMenuItem<T1>
{
public OsuDropdownMenuItem(string text, U value) : base(text, value)
public OsuDropdownMenuItem(string text, T1 value) : base(text, value)
{
Foreground.Padding = new MarginPadding(2);