Skip to content

Commit f1236cd

Browse files
committed
Bug fixes
1 parent c6a9b5c commit f1236cd

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Universal x86 Tuning Utility/App.xaml.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,6 @@ private async void OnStartup(object sender, StartupEventArgs e)
244244
{
245245
Settings.Default.Path = path;
246246
Settings.Default.FirstBoot = false;
247-
if (Family.FAM > Family.RyzenFamily.Rembrandt || Family.FAM == Family.RyzenFamily.Mendocino)
248-
Settings.Default.polling = 3;
249247
Settings.Default.Save();
250248

251249
//PowerPlans.SetPowerValue("scheme_current", "sub_processor", "PERFAUTONOMOUS", 1, true);

Universal x86 Tuning Utility/Views/Pages/SettingsPage.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ private void cbMinimizeClose_Click(object sender, System.Windows.RoutedEventArgs
105105

106106
private void cbAutoReapply_Click(object sender, System.Windows.RoutedEventArgs e)
107107
{
108-
Settings.Default.AutoReapply = (bool)cbAutoReapply.IsChecked;
108+
Settings.Default.AutoReapply = (bool)cbAutoReapply.IsChecked;
109+
Settings.Default.AutoReapplyTime = (int)nudAutoReapply.Value;
109110
Settings.Default.Save();
110111
}
111112

@@ -238,8 +239,7 @@ private void cbTrack_Click(object sender, RoutedEventArgs e)
238239

239240
private void nudAutoReapply_ValueChanged(object sender, RoutedEventArgs e)
240241
{
241-
Settings.Default.AutoReapplyTime = (int)nudAutoReapply.Value;
242-
Settings.Default.Save();
242+
243243
}
244244
}
245245
}

0 commit comments

Comments
 (0)