From 15501c78458aa7e52fda554e4825c19dd9d1fe70 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 22 Oct 2024 17:49:37 +0200 Subject: [PATCH] Animatrix picture editor tweaks https://github.com/seerge/g-helper/issues/3280 --- app/AnimeMatrix/AniMatrixControl.cs | 2 +- app/Matrix.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/AnimeMatrix/AniMatrixControl.cs b/app/AnimeMatrix/AniMatrixControl.cs index ca5e0a8b..4bb8aeb6 100644 --- a/app/AnimeMatrix/AniMatrixControl.cs +++ b/app/AnimeMatrix/AniMatrixControl.cs @@ -213,7 +213,7 @@ namespace GHelper.AnimeMatrix switch (running) { case 2: - SetMatrixPicture(AppConfig.GetString("matrix_picture")); + SetMatrixPicture(AppConfig.GetString("matrix_picture"), false); break; case 3: SetMatrixClock(); diff --git a/app/Matrix.cs b/app/Matrix.cs index 0a65cd84..b811cf18 100644 --- a/app/Matrix.cs +++ b/app/Matrix.cs @@ -81,7 +81,7 @@ namespace GHelper { AppConfig.Set("matrix_contrast", trackContrast.Value); AppConfig.Set("matrix_gamma", trackGamma.Value); - SetMatrixPicture(); + SetMatrixPicture(false); }