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
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}