From e6a547dbfd11fdc5fc8fd5001f69bec510d3fb19 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:23:47 +0100 Subject: [PATCH] Animematrix clock position tweak https://github.com/seerge/g-helper/issues/3304 --- 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 300dac04..8c9f0aa9 100644 --- a/app/AnimeMatrix/AnimeMatrixDevice.cs +++ b/app/AnimeMatrix/AnimeMatrixDevice.cs @@ -410,7 +410,7 @@ namespace GHelper.AnimeMatrix if (DateTime.Now.Second % 2 != 0) timeFormat = timeFormat.Replace(":", " "); Clear(); - Text(DateTime.Now.ToString(timeFormat), 15, 2, 25); + Text(DateTime.Now.ToString(timeFormat), 15, 13 - FullRows, 25); Text(DateTime.Now.ToString(dateFormat), 11.5F, 0, 14); Present();