mirror of https://github.com/BOINC/boinc.git
Manager, advanced prefs: don't disable idle time box
We disabled it if CPU and GPU disable checkboxes are both clear. But if there not-in-use prefs it's relevant.
This commit is contained in:
parent
b1f9bbf79a
commit
93b5bbf4ff
|
@ -348,14 +348,8 @@ void CDlgAdvPreferences::ReadPreferenceSettings() {
|
|||
m_chkGPUProcInUse->Disable();
|
||||
}
|
||||
|
||||
// idle for X minutes
|
||||
if (m_chkProcInUse->IsChecked() || m_chkGPUProcInUse->IsChecked()) {
|
||||
m_txtProcIdleFor->Enable();
|
||||
// idle if no input in X minutes
|
||||
DisplayValue(prefs.idle_time_to_run, m_txtProcIdleFor);
|
||||
} else {
|
||||
m_txtProcIdleFor->Clear();
|
||||
m_txtProcIdleFor->Disable();
|
||||
}
|
||||
|
||||
m_chkNoRecentInput->SetValue(prefs.suspend_if_no_recent_input > 0.0);
|
||||
DisplayValue(prefs.suspend_if_no_recent_input, m_txtNoRecentInput, m_chkNoRecentInput);
|
||||
|
@ -713,14 +707,6 @@ bool CDlgAdvPreferences::SavePreferencesSettings() {
|
|||
//
|
||||
void CDlgAdvPreferences::UpdateControlStates() {
|
||||
// ######### proc usage page
|
||||
// Disable idle timeout edit text item if we allow both CPU and GPU when idle.
|
||||
bool wasEnabled = m_txtProcIdleFor->IsEnabled();
|
||||
bool shouldEnable = m_chkProcInUse->IsChecked() || m_chkGPUProcInUse->IsChecked();
|
||||
m_txtProcIdleFor->Enable(shouldEnable);
|
||||
if (wasEnabled && !shouldEnable) m_txtProcIdleFor->Clear();
|
||||
if (shouldEnable && !wasEnabled) {
|
||||
DisplayValue(defaultPrefs.idle_time_to_run, m_txtProcIdleFor);
|
||||
}
|
||||
|
||||
// If we suspend work when in use, disable and check "Use GPU when in use"
|
||||
m_chkGPUProcInUse->Enable(! m_chkProcInUse->IsChecked());
|
||||
|
|
Loading…
Reference in New Issue