From c24f0402efb5d0cc22e359c3576ba781ba90e5cc Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 12 Jun 2024 08:19:01 -0400 Subject: [PATCH] Revert "Change from a LineEdit to a ComboBox for SuperFox Free Text messages." This reverts commit 6518f52a80a811b65f0c98b78dc44f18d8fa2573. --- widgets/mainwindow.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index afc5bc495..9bfc53cc2 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -9965,12 +9965,9 @@ void MainWindow::on_pbFoxReset_clicked() void MainWindow::on_pbFreeText_clicked() { bool ok; - static QStringList items; - if(items.isEmpty()) items << "HELLO TEST 1234..." << "CALL FROM 200 to 5000 HZ"; - m_freeTextMsg = QInputDialog::getItem (this, tr("Free Text Message"), - tr("Message:"), items, 0, true, &ok); + m_freeTextMsg = QInputDialog::getText (this, tr("Free Text Message"), + tr("Message:"), QLineEdit::Normal, m_freeTextMsg0, &ok); if(ok) { - if(!m_freeTextMsg.isEmpty()) items.append(m_freeTextMsg); m_freeTextMsg=m_freeTextMsg.toUpper(); m_freeTextMsg0=m_freeTextMsg; }