From 8daa990b5d7adf8b87238672bc640d88d42e77b3 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Wed, 27 Mar 2024 09:32:00 +0100 Subject: [PATCH] Config option to hide GameVisual https://github.com/seerge/g-helper/issues/2307 --- app/Settings.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Settings.cs b/app/Settings.cs index 762315a2..6dd31d64 100644 --- a/app/Settings.cs +++ b/app/Settings.cs @@ -264,6 +264,8 @@ namespace GHelper public void InitVisual() { + if (AppConfig.Is("hide_visual")) return; + if (AppConfig.IsOLED()) { panelGamma.Visible = true;