mirror of
https://github.com/ppy/osu.git
synced 2026-06-01 13:20:11 +08:00
Fix regressed digital clock width conditional
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user