1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:02:55 +08:00

Add missing colon in mod settings tooltip

This commit is contained in:
Dean Herbert 2023-08-23 19:13:32 +09:00
parent 71ec29041b
commit 91c2cadb47

View File

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