Removed Undervolting sliders for not supported models

This commit is contained in:
Serge
2023-07-16 17:04:15 +02:00
parent e593fa3a76
commit a31303624a
3 changed files with 22 additions and 2 deletions

View File

@@ -285,6 +285,16 @@ namespace GHelper
private void VisualiseAdvanced()
{
if (!RyzenControl.IsSupportedUV())
{
panelUV.Visible = panelUViGPU.Visible = false;
}
if (!RyzenControl.IsSupportedUV())
{
panelUViGPU.Visible = false;
}
labelUV.Text = trackUV.Value.ToString();
labelUViGPU.Text = trackUViGPU.Value.ToString();
labelTemp.Text = (trackTemp.Value < RyzenControl.MaxTemp) ? trackTemp.Value.ToString() + "°C" : "Default";