From 179c4579dc2e8c68e85a6c169b8948b846b6490f Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 1 Jun 2015 11:51:22 +0000 Subject: [PATCH] UDP free text message clicks the tx5 next radio button This change allows a server to change the free text message and cue it for transmission in teh next period when using tab 1. For tab 2 the behaviour is unchanged and this message simply changes the free text message text. The action if the send option is set on this message remains unchanged in that it clicks the tx5 send now button im tab 1 or the free text message radio button on tab 2 i.e. send ASAP. Merged from the wsjtx branch. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.5@5484 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 9e204f2c1..e1f6a70fd 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -211,6 +211,8 @@ MainWindow::MainWindow(bool multiple, QSettings * settings, QSharedMemory *shdme ui->tx5->setCurrentText (text); if (send) { ui->txb5->click (); + } else { + ui->txrb5->click (); } } else if (1 == ui->tabWidget->currentIndex ()) { ui->freeTextMsg->setCurrentText (text);