From 4cf4e2eb669ecde708ad6f1f5cf077f39aeca573 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sat, 16 Dec 2023 10:40:46 +0100 Subject: [PATCH] Hide unsupported power sliders https://github.com/seerge/g-helper/discussions/1747 --- app/Fans.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Fans.cs b/app/Fans.cs index fec0faf1..b13901fd 100644 --- a/app/Fans.cs +++ b/app/Fans.cs @@ -793,7 +793,7 @@ namespace GHelper bool modeB0 = Program.acpi.IsAllAmdPPT(); bool modeC1 = Program.acpi.DeviceGet(AsusACPI.PPT_APUC1) >= 0; - panelA0.Visible = modeA0; + panelA0.Visible = panelA3.Visible = modeA0; panelB0.Visible = modeB0; panelApplyPower.Visible = panelTitleCPU.Visible = modeA0 || modeB0 || modeC1;