This commit is contained in:
Serge
2024-10-22 17:49:37 +02:00
parent 011fdeeb36
commit 15501c7845
2 changed files with 2 additions and 2 deletions

View File

@@ -213,7 +213,7 @@ namespace GHelper.AnimeMatrix
switch (running) switch (running)
{ {
case 2: case 2:
SetMatrixPicture(AppConfig.GetString("matrix_picture")); SetMatrixPicture(AppConfig.GetString("matrix_picture"), false);
break; break;
case 3: case 3:
SetMatrixClock(); SetMatrixClock();

View File

@@ -81,7 +81,7 @@ namespace GHelper
{ {
AppConfig.Set("matrix_contrast", trackContrast.Value); AppConfig.Set("matrix_contrast", trackContrast.Value);
AppConfig.Set("matrix_gamma", trackGamma.Value); AppConfig.Set("matrix_gamma", trackGamma.Value);
SetMatrixPicture(); SetMatrixPicture(false);
} }