1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-22 03:07:20 +01:00

see #2087 disabling "reboot" checkbox when "test run" is unchecked

This commit is contained in:
Vadim Kurland 2011-02-19 16:21:04 -08:00
parent 73c31a589f
commit ad5a140932

View File

@ -254,5 +254,7 @@ void instOptionsDialog::testModeToggled()
{
m_dialog->rollback->setEnabled(m_dialog->testRun->isChecked());
m_dialog->rollbackTime->setEnabled(m_dialog->testRun->isChecked());
if ( ! m_dialog->testRun->isChecked()) m_dialog->rollback->setChecked(false);
}