mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
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
This commit is contained in:
parent
692fa93501
commit
063e173cf9
@ -3617,10 +3617,10 @@ void MainWindow::guiUpdate()
|
|||||||
if(m_transmitting) {
|
if(m_transmitting) {
|
||||||
char s[37];
|
char s[37];
|
||||||
if(m_config.bFox() and ui->tabWidget->currentIndex()==2) {
|
if(m_config.bFox() and ui->tabWidget->currentIndex()==2) {
|
||||||
if(m_Nslots==1) {
|
if(foxcom_.nslots==1) {
|
||||||
sprintf(s,"Tx: 1 slot");
|
sprintf(s,"Tx: %s",foxcom_.cmsg[0]);
|
||||||
} else {
|
} else {
|
||||||
sprintf(s,"Tx: %d Slots",m_Nslots);
|
sprintf(s,"Tx: %d Slots",foxcom_.nslots);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
sprintf(s,"Tx: %s",msgsent);
|
sprintf(s,"Tx: %s",msgsent);
|
||||||
|
Loading…
Reference in New Issue
Block a user