Remove simple localisable .ToString() calls

This commit is contained in:
Bartłomiej Dach
2021-10-30 18:50:34 +02:00
parent 11de924704
commit ed00cd9fc5
5 changed files with 7 additions and 7 deletions

View File

@ -16,8 +16,7 @@ namespace osu.Game.Overlays.Settings
public override LocalisableString LabelText
{
get => labelText;
// checkbox doesn't properly support localisation yet.
set => ((OsuCheckbox)Control).LabelText = (labelText = value).ToString();
set => ((OsuCheckbox)Control).LabelText = labelText = value;
}
}
}