From 063e173cf918e6af61d21a402d6624f0c6668d9f Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 20 Feb 2018 17:00:17 +0000 Subject: [PATCH] Fix the yellow Tx status label for Fox transmissions. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8512 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index f7b2112a7..a7377bf47 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3617,10 +3617,10 @@ void MainWindow::guiUpdate() if(m_transmitting) { char s[37]; if(m_config.bFox() and ui->tabWidget->currentIndex()==2) { - if(m_Nslots==1) { - sprintf(s,"Tx: 1 slot"); + if(foxcom_.nslots==1) { + sprintf(s,"Tx: %s",foxcom_.cmsg[0]); } else { - sprintf(s,"Tx: %d Slots",m_Nslots); + sprintf(s,"Tx: %d Slots",foxcom_.nslots); } } else { sprintf(s,"Tx: %s",msgsent);