GPU clocks tweaks

This commit is contained in:
Serge
2023-05-06 18:17:37 +02:00
parent c61f4d1608
commit 6fe6492df3
5 changed files with 109 additions and 89 deletions

View File

@@ -679,12 +679,11 @@ namespace GHelper
}
}
private void ButtonFans_Click(object? sender, EventArgs e)
public void FansToggle()
{
if (fans == null || fans.Text == "")
{
fans = new Fans();
//Debug.WriteLine("Starting fans");
}
if (fans.Visible)
@@ -696,7 +695,11 @@ namespace GHelper
fans.Show();
}
}
private void ButtonFans_Click(object? sender, EventArgs e)
{
FansToggle();
}
private void ButtonKeyboardColor_Click(object? sender, EventArgs e)