From e23ebc48ad487159880186fc037cbcbc0b004faa Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 17 Dec 2016 15:19:48 +0000 Subject: [PATCH] Don't freeze the Tx5 message if use has double-clicked on a decode. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7392 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index debdb5bbb..950ec2240 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4688,7 +4688,7 @@ void MainWindow::on_rptSpinBox_valueChanged(int n) int ntx0=m_ntx; QString t=ui->tx5->currentText(); genStdMsgs(m_rpt); - ui->tx5->setCurrentText(t); + if(!m_bDoubleClicked) ui->tx5->setCurrentText(t); m_ntx=ntx0; if(m_ntx==1) ui->txrb1->setChecked(true); if(m_ntx==2) ui->txrb2->setChecked(true);