Merge pull request #24631 from peppy/add-colon-mod-settings

Add missing colon in mod settings tooltip
This commit is contained in:
Bartłomiej Dach 2023-08-23 12:46:33 +02:00 committed by GitHub
commit b1979954f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public virtual string SettingDescription
var bindable = (IBindable)property.GetValue(this)!;
if (!bindable.IsDefault)
tooltipTexts.Add($"{attr.Label} {bindable}");
tooltipTexts.Add($"{attr.Label}: {bindable}");
}
return string.Join(", ", tooltipTexts.Where(s => !string.IsNullOrEmpty(s)));