mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09: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