From fd878869a1d456d1518d32e6bda319cc71de301e Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 1 Jun 2015 11:34:50 +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. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5483 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 5f3057531..523455811 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -190,6 +190,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);