File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public override void Render(DrawingContext context)
7979 var authorTop = y - author . Height * 0.5 ;
8080 context . DrawText ( author , new Point ( x , authorTop ) ) ;
8181
82- var timeStr = Models . DateTimeFormat . Format ( info . Timestamp ) ;
82+ var timeStr = Models . DateTimeFormat . Format ( info . Timestamp , true ) ;
8383 var time = new FormattedText (
8484 timeStr ,
8585 CultureInfo . CurrentCulture ,
@@ -131,7 +131,7 @@ protected override Size MeasureOverride(Size availableSize)
131131 _editor . Foreground ) ;
132132 x += author . Width + 8 ;
133133
134- var timeStr = Models . DateTimeFormat . Format ( info . Timestamp ) ;
134+ var timeStr = Models . DateTimeFormat . Format ( info . Timestamp , true ) ;
135135 var time = new FormattedText (
136136 timeStr ,
137137 CultureInfo . CurrentCulture ,
You can’t perform that action at this time.
0 commit comments