Removed redundant qualifiers

This commit is contained in:
Andrey Zavadskiy
2017-02-27 17:37:38 +03:00
parent 3487dfe236
commit 9444ffd849
5 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ namespace osu.Game.Overlays.Options
bindable = value;
if (bindable != null)
{
base.Text = bindable.Value;
Text = bindable.Value;
bindable.ValueChanged += bindableValueChanged;
}