mirror of https://github.com/ppy/osu
Revert string type changes in `MetadataLineInfo`
This commit is contained in:
parent
9f525ee267
commit
848366416e
|
@ -226,10 +226,10 @@ public MetadataLineLabel(LocalisableString text)
|
|||
|
||||
private class MetadataLineInfo : OsuSpriteText
|
||||
{
|
||||
public MetadataLineInfo(LocalisableString text)
|
||||
public MetadataLineInfo(string text)
|
||||
{
|
||||
Margin = new MarginPadding { Left = 5 };
|
||||
Text = string.IsNullOrEmpty(text.ToString()) ? @"-" : text;
|
||||
Text = string.IsNullOrEmpty(text) ? @"-" : text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue