| 960 | } |
| 961 | |
| 962 | void |
| 963 | FFTWidget::refreshParamControls(Suscan::AnalyzerParams const ¶ms) |
| 964 | { |
| 965 | bool blockSignals = this->blockSignals(true); |
| 966 | |
| 967 | this->setWindowFunction(params.windowFunction); |
| 968 | this->setFftSize(params.windowSize); |
| 969 | this->setRefreshRate(SCAST(unsigned, 1.f / params.psdUpdateInterval)); |
| 970 | this->blockSignals(blockSignals); |
| 971 | } |
| 972 | |
| 973 | ///////////////////////////////// Slots /////////////////////////////////////// |
| 974 | void |
no test coverage detected