From bcfa4526d2bcd27f9775fe6ad4d607c1e36623d3 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 7 Jun 2020 13:02:27 -0400 Subject: [PATCH] Clear DX Grid after any change in DX Call. (Is this the best way to do it?) --- widgets/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 1f7313a54..48c6ebc73 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -5547,6 +5547,7 @@ void MainWindow::on_tx6_editingFinished() //tx6 edited void MainWindow::on_dxCallEntry_textChanged (QString const& call) { m_hisCall = call; + ui->dxGridEntry->clear(); statusChanged(); statusUpdate (); }