1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 02:03:22 +08:00

Merge pull request #8960 from Joehuu/24-hour-format-date-tooltip

Fix date tooltip not showing in 24-hour format
This commit is contained in:
Dean Herbert 2020-05-07 14:59:03 +09:00 committed by GitHub
commit 6473cd77b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ namespace osu.Game.Graphics
return false;
dateText.Text = $"{date:d MMMM yyyy} ";
timeText.Text = $"{date:hh:mm:ss \"UTC\"z}";
timeText.Text = $"{date:HH:mm:ss \"UTC\"z}";
return true;
}