| 6180 | } |
| 6181 | |
| 6182 | void MainWindow::pushSliceOverlay(SliceModel* s) |
| 6183 | { |
| 6184 | if (m_applyingLayout) return; |
| 6185 | auto* sw = spectrumForSlice(s); |
| 6186 | if (!sw) return; |
| 6187 | sw->setSliceOverlay(s->sliceId(), s->frequency(), |
| 6188 | s->filterLow(), s->filterHigh(), s->isTxSlice(), |
| 6189 | s->sliceId() == m_activeSliceId, |
| 6190 | s->mode(), s->rttyMark(), s->rttyShift(), |
| 6191 | s->ritOn(), s->ritFreq(), s->xitOn(), s->xitFreq(), |
| 6192 | s->diversity(), s->isDiversityParent(), |
| 6193 | s->isDiversityChild(), s->diversityIndex()); |
| 6194 | } |
| 6195 | |
| 6196 | void MainWindow::syncTxWaterfallSliceToSpectrums() |
| 6197 | { |
nothing calls this directly
no test coverage detected