mirror of https://github.com/ppy/osu
Fix regressed digital clock width conditional
This commit is contained in:
parent
c323020fcf
commit
a616f5bc2a
|
@ -73,7 +73,7 @@ protected override void UpdateDisplay(DateTimeOffset now)
|
|||
|
||||
private void updateMetrics()
|
||||
{
|
||||
Width = showRuntime || use24HourDisplay ? 66 : 45; // Allows for space for game time up to 99 days (in the padding area since this is quite rare).
|
||||
Width = showRuntime || !use24HourDisplay ? 66 : 45; // Allows for space for game time up to 99 days (in the padding area since this is quite rare).
|
||||
|
||||
gameTime.FadeTo(showRuntime ? 1 : 0);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue