diff --git a/osu.Game/Overlays/Options/TextBoxOption.cs b/osu.Game/Overlays/Options/TextBoxOption.cs index 91ec251bac..ffd9c86b71 100644 --- a/osu.Game/Overlays/Options/TextBoxOption.cs +++ b/osu.Game/Overlays/Options/TextBoxOption.cs @@ -23,12 +23,12 @@ namespace osu.Game.Overlays.Options } } - protected override string internalText + protected override string InternalText { - get { return base.internalText; } + get { return base.InternalText; } set { - base.internalText = value; + base.InternalText = value; if (bindable != null) bindable.Value = value; }