Fix regressed digital clock width conditional

This commit is contained in:
Salman Ahmed
2022-04-07 19:24:15 +03:00
parent c323020fcf
commit a616f5bc2a

View File

@ -73,7 +73,7 @@ namespace osu.Game.Overlays.Toolbar
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);
}