Fix date tooltip not showing in 24-hour format

This commit is contained in:
Joehu 2020-05-06 22:29:37 -07:00
parent c8134162b5
commit 259ef68811
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ public bool SetContent(object content)
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;
}