mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-04 22:27:50 -04:00
Don't try to erase if widget was not started!
This commit is contained in:
parent
ab48d77d0f
commit
f6c608b227
@ -7466,7 +7466,8 @@ void MainWindow::handle_transceiver_update (Transceiver::TransceiverState const&
|
|||||||
if (m_lastDialFreq != m_freqNominal &&
|
if (m_lastDialFreq != m_freqNominal &&
|
||||||
(m_mode != "MSK144"
|
(m_mode != "MSK144"
|
||||||
|| !(ui->cbCQTx->isEnabled () && ui->cbCQTx->isVisible () && ui->cbCQTx->isChecked()))) {
|
|| !(ui->cbCQTx->isEnabled () && ui->cbCQTx->isVisible () && ui->cbCQTx->isChecked()))) {
|
||||||
if(m_lastDialFreq != m_freqNominal and m_ActiveStationsWidget->isVisible()) {
|
|
||||||
|
if(m_lastDialFreq != m_freqNominal and m_ActiveStationsWidget != NULL) {
|
||||||
m_recentCall.clear();
|
m_recentCall.clear();
|
||||||
m_ActiveStationsWidget->erase();
|
m_ActiveStationsWidget->erase();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user