1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00

Fix comments, remove fixed width on "bpm" text and adjust baseline adjust slightly

This commit is contained in:
Dean Herbert 2023-01-10 18:20:39 +09:00
parent 85f542c3a8
commit 37d219a8ad

View File

@ -37,7 +37,7 @@ namespace osu.Game.Screens.Play.HUD
{
base.Update();
//We dont want it going to 0 when we pause. so we block the updates
//We don't want it going to 0 when we pause. so we block the updates
if (gameplayClock.IsPaused.Value) return;
// We want to check Rate every update to cover windup/down
@ -84,9 +84,9 @@ namespace osu.Game.Screens.Play.HUD
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
Font = OsuFont.Numeric.With(size: 8, fixedWidth: true),
Font = OsuFont.Numeric.With(size: 8),
Text = @"BPM",
Padding = new MarginPadding { Bottom = 1.5f }, // align baseline better
Padding = new MarginPadding { Bottom = 2f }, // align baseline better
}
}
};