| 2352 | } |
| 2353 | |
| 2354 | void AppFrame::handleMuteButton() { |
| 2355 | if (demodMuteButton->modeChanged()) { |
| 2356 | int muteMode = demodMuteButton->getSelection(); |
| 2357 | if (muteMode == -1) { |
| 2358 | wxGetApp().getDemodMgr().setLastMuted(false); |
| 2359 | } else if (muteMode == 1) { |
| 2360 | wxGetApp().getDemodMgr().setLastMuted(true); |
| 2361 | } |
| 2362 | demodMuteButton->clearModeChanged(); |
| 2363 | } |
| 2364 | } |
| 2365 | |
| 2366 | void AppFrame::handleSpectrumWaterfall() { |
| 2367 | if (spectrumCanvas->getViewState() && |
nothing calls this directly
no test coverage detected