| 176 | } |
| 177 | |
| 178 | unsigned int SettingsDialog::getCacheSizeInMB() const |
| 179 | { |
| 180 | if (!ui.groupBoxCaching->isChecked()) |
| 181 | return 0; |
| 182 | return std::max(functions::systemMemorySizeInMB() * (ui.sliderThreshold->value() + 1) / 100, |
| 183 | MIN_CACHE_SIZE_IN_MB); |
| 184 | } |
| 185 | |
| 186 | void SettingsDialog::on_checkBoxNrThreads_stateChanged(int newState) |
| 187 | { |
nothing calls this directly
no test coverage detected