From 35f1a3a25b4f42e83d7cfd5c0f878426963068c5 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Thu, 11 May 2023 11:18:42 +0200 Subject: [PATCH] Clock tweak --- app/AnimeMatrix/AnimeMatrixDevice.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AnimeMatrix/AnimeMatrixDevice.cs b/app/AnimeMatrix/AnimeMatrixDevice.cs index 2146e2f0..665ab75b 100644 --- a/app/AnimeMatrix/AnimeMatrixDevice.cs +++ b/app/AnimeMatrix/AnimeMatrixDevice.cs @@ -327,7 +327,7 @@ namespace Starlight.AnimeMatrix int second = DateTime.Now.Second; if (CultureInfo.CurrentCulture.DateTimeFormat.ShortTimePattern.Contains("H")) - PresentTextDiagonal(DateTime.Now.ToString("H" + ((second % 2 == 0) ? ":" : " ") + "mm")); + PresentTextDiagonal(DateTime.Now.ToString(" H" + ((second % 2 == 0) ? ":" : " ") + "mm")); else PresentTextDiagonal(DateTime.Now.ToString("h" + ((second % 2 == 0) ? ":" : " ") + "mmtt")); }