Complete the handling of SuperFox text messages.

This commit is contained in:
Joe Taylor
2024-03-27 11:03:59 -04:00
parent c652763932
commit cf4167ea2d
2 changed files with 10 additions and 9 deletions
+4 -1
View File
@@ -9884,7 +9884,10 @@ void MainWindow::on_pbFreeText_clicked()
bool ok;
m_freeTextMsg = QInputDialog::getText (this, tr("Free Text Message"),
tr("Message:"), QLineEdit::Normal, m_freeTextMsg0, &ok);
if(ok) m_freeTextMsg0=m_freeTextMsg;
if(ok) {
m_freeTextMsg=m_freeTextMsg.toUpper();
m_freeTextMsg0=m_freeTextMsg;
}
}
void MainWindow::on_comboBoxHoundSort_activated(int index)