Fixes for scaling, and layout

This commit is contained in:
seerge
2023-03-18 15:13:34 +01:00
parent 74846097db
commit 5767320437
8 changed files with 455 additions and 239 deletions

View File

@@ -126,7 +126,7 @@ namespace GHelper
{
int boost = NativeMethods.GetCPUBoost();
if (boost >= 0)
comboBoost.SelectedIndex = boost;
comboBoost.SelectedIndex = Math.Min(boost,5);
}
private void ComboBoost_Changed(object? sender, EventArgs e)