mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05: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 &&
|
||||
(m_mode != "MSK144"
|
||||
|| !(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_ActiveStationsWidget->erase();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user