1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 15:27:20 +08:00

s/internalText/InternalText/g

This commit is contained in:
Drew DeVault 2016-11-10 18:25:20 -05:00
parent a81f099d40
commit e2365cfad2

View File

@ -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;
}