| 184 | } |
| 185 | |
| 186 | void SettingsDialog::on_checkBoxNrThreads_stateChanged(int newState) |
| 187 | { |
| 188 | ui.spinBoxNrThreads->setEnabled(newState); |
| 189 | if (newState == Qt::Unchecked) |
| 190 | ui.spinBoxNrThreads->setValue(functions::getOptimalThreadCount()); |
| 191 | } |
| 192 | |
| 193 | void SettingsDialog::on_checkBoxEnablePlaybackCaching_stateChanged(int state) |
| 194 | { |
nothing calls this directly
no test coverage detected