Don't show seconds in chat timestamps

This commit is contained in:
Dean Herbert 2024-07-30 16:59:46 +09:00
parent 71acb7e9fc
commit e63080eb2e
No known key found for this signature in database

View File

@ -258,7 +258,7 @@ namespace osu.Game.Overlays.Chat
private void updateTimestamp()
{
drawableTimestamp.Text = message.Timestamp.LocalDateTime.ToLocalisableString(prefer24HourTime.Value ? @"HH:mm:ss" : @"hh:mm:ss tt");
drawableTimestamp.Text = message.Timestamp.LocalDateTime.ToLocalisableString(prefer24HourTime.Value ? @"HH:mm" : @"hh:mm tt");
}
private static readonly Color4[] default_username_colours =