Rename nested classes

This commit is contained in:
Pasi4K5
2021-06-12 18:37:31 +02:00
parent b79d57b68c
commit ef9cb2c958
3 changed files with 6 additions and 6 deletions

View File

@ -13,14 +13,14 @@ namespace osu.Game.Overlays.Settings
{
public class SettingsTextBox : SettingsItem<string>
{
protected override Drawable CreateControl() => new OsuSettingsTextBox
protected override Drawable CreateControl() => new TextBox
{
Margin = new MarginPadding { Top = 5 },
RelativeSizeAxes = Axes.X,
CommitOnFocusLost = true,
};
public class OsuSettingsTextBox : OsuTextBox
public class TextBox : OsuTextBox
{
private const float border_thickness = 3;