Tidy up string output

This commit is contained in:
Dean Herbert
2019-10-28 12:31:38 +09:00
parent 1953aa64b6
commit 43ad4a3a3c
5 changed files with 11 additions and 6 deletions

View File

@ -25,7 +25,7 @@ namespace osu.Game.Screens.Edit.Timing
ControlPoint.BindValueChanged(point =>
{
bpm.Text = $"BPM: {point.NewValue?.BeatLength}";
bpm.Text = $"BPM: {point.NewValue?.BPM:0.##}";
timeSignature.Text = $"Signature: {point.NewValue?.TimeSignature}";
});
}