2019-01-24 16:43:03 +08:00
|
|
|
|
// 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 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
2018-11-06 17:28:22 +08:00
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Menus
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public class EditorMenuItem : OsuMenuItem
|
|
|
|
|
{
|
|
|
|
|
private const int min_text_length = 40;
|
|
|
|
|
|
|
|
|
|
public EditorMenuItem(string text, MenuItemType type = MenuItemType.Standard)
|
|
|
|
|
: base(text.PadRight(min_text_length), type)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EditorMenuItem(string text, MenuItemType type, Action action)
|
|
|
|
|
: base(text.PadRight(min_text_length), type, action)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|