Skip to content

Commit

Permalink
slideshow: use the correct : symbol for countdown
Browse files Browse the repository at this point in the history
  • Loading branch information
d2phap committed Oct 16, 2022
1 parent 6ddb15b commit a72e833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v9/Utilities/igcmd/Slideshow/FrmSlideshow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ private void PicMain_Render(object? sender, RenderEventArgs e)

// draw countdown text ----------------------------------------------
var countdownTime = TimeSpan.FromSeconds(_slideshowCountdown + 1);
var text = (countdownTime - _slideshowStopwatch.Elapsed).ToString("mm':'ss");
var text = (countdownTime - _slideshowStopwatch.Elapsed).ToString("mm''ss");


var font = new Font(Font.FontFamily, 30f);
Expand Down

0 comments on commit a72e833

Please sign in to comment.